Aller au contenu
GET /v1/tag

Newest public photos for tag(s)

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/tag" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/flickr-api/v1/tag", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/flickr-api/v1/tag");
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/tag",
    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": {
        "tags": [
            "sunset"
        ],
        "count": 10,
        "photos": [
            {
                "link": "https://www.flickr.com/photos/200940948@N08/55323173847/",
                "tags": [
                    "sea",
                    "bw",
                    "cat",
                    "sky",
                    "pink",
                    "landscape",
                    "winter",
                    "park",
                    "water",
                    "trees",
                    "food",
                    "house",
                    "new",
                    "people",
                    "old",
                    "flowers",
                    "portrait",
                    "flower",
                    "beach",
                    "tree",
                    "street",
                    "white",
                    "clouds",
                    "city",
                    "art",
                    "dog",
                    "blue",
                    "car",
                    "light",
                    "blackandwhite",
                    "snow",
                    "music",
                    "sun",
                    "christmas",
                    "family",
                    "yellow",
                    "bridge",
                    "green",
                    "bird",
                    "river"
                ],
                "title": "IMG-2509257365__easyHDR-def-ost-nas",
                "author": "wojciech g",
                "images": {
                    "large": "https://live.staticflickr.com/65535/55323173847_e581e25bae_b.jpg",
                    "small": "https://live.staticflickr.com/65535/55323173847_e581e25bae_n.jpg",
                    "medium": "https://live.staticflickr.com/65535/55323173847_e581e25bae_z.jpg",
                    "square": "https://live.staticflickr.com/65535/55323173847_e581e25bae_q.jpg",
                    "thumbnail": "https://live.staticflickr.com/65535/55323173847_e581e25bae_m.jpg"
                },
                "photo_id": "55323173847",
                "tags_raw": "sea bw cat sky pink landscape winter park water trees food house new people old flowers portrait flower beach tree street white clouds city art dog blue car light blackandwhite snow music sun christmas family yellow bridge green bird river summer sunset lake garden macro night moon nature orange red travel sunrise mountain forest road building architecture abstract reflection animal kids wedding holiday vacation trip europe london paris italy australia japan usa california spain germany",
                "author_id": "200940948@N08",
                "published": "2026-06-09T10:45:35Z",
                "date_taken": "2025-09-25T15:43:28-08:00"
            },
            {
                "link": "https://www.flickr.com/photos/200940948@N08/55324496450/",
                "tags": [
                    "sea",
                    "bw",
                    "cat",
        
…