Skip to content
GET /v1/tag

Newest public photos for tag(s)

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/flickr-api

It works. Grab an API key and use it in your project.

Get an API key

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

Example response

A real response from this endpoint, captured by the latest 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",
        
…