Zum Inhalt springen
GET /v1/tag

Newest public photos for tag(s)

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/flickr-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "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",
        
…