Aller au contenu
GET /v1/meta

Service metadata

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/flickr-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

curl "https://api.oanor.com/flickr-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/flickr-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/flickr-api/v1/meta");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/flickr-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "data": {
        "note": "Feeds return the 20 most recent public photos per query.",
        "source": "Flickr public feeds (live)",
        "service": "flickr-api",
        "endpoints": {
            "GET /v1/tag": "Newest public photos for tag(s) (tags=sunset, tagmode=any|all).",
            "GET /v1/meta": "This document.",
            "GET /v1/user": "A photographer's recent public photostream (id=44494372@N05).",
            "GET /v1/recent": "Newest public photos across all of Flickr."
        },
        "description": "Live public photo streams from Flickr, the original photo-sharing community, from Flickr's open public feeds: the newest public photos across all of Flickr; the newest photos for one or more tags (match-any or match-all) — the hashtag feed of Flickr; and a photographer's most recent public photostream by Flickr ID. Each photo is cleaned up — photographer name extracted, human tags separated from machine tags, and the image URL expanded into square, small, medium and large variants plus a link to the photo page. Live, no key, nothing stored. Distinct from Pixelfed and mainstream social APIs — this is Flickr's public photo stream by recency, tag and user.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-09T11:38:23.889Z",
        "request_id": "29e6e04c-6af5-4521-8713-cb654ca4b92a"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}