Naar de inhoud
GET /v1/favorites

A photographer's favourited photos

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/flickr-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/flickr-api/v1/favorites" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/flickr-api/v1/favorites", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/flickr-api/v1/favorites");
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/favorites",
    headers={"x-oanor-key": "oanor_test_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "count": 20,
        "source": "Flickr",
        "user_id": "44494372@N05",
        "favorites": [
            {
                "link": "https://www.flickr.com/photos/nasahubble/55301169976/",
                "tags": [
                    "messier88",
                    "nasa",
                    "hubble",
                    "esa",
                    "hubblespacetelescope",
                    "telescope",
                    "spacetelescope",
                    "cosmos",
                    "universe",
                    "space",
                    "cosmic",
                    "astronomy",
                    "galaxy"
                ],
                "title": "Hubble Captures M88 on Journey to Center of Virgo Cluster",
                "author": "NASA Hubble",
                "images": {
                    "large": "https://live.staticflickr.com/65535/55301169976_b923354498_b.jpg",
                    "small": "https://live.staticflickr.com/65535/55301169976_b923354498_n.jpg",
                    "medium": "https://live.staticflickr.com/65535/55301169976_b923354498_z.jpg",
                    "square": "https://live.staticflickr.com/65535/55301169976_b923354498_q.jpg",
                    "thumbnail": "https://live.staticflickr.com/65535/55301169976_b923354498_m.jpg"
                },
                "photo_id": "55301169976",
                "tags_raw": "messier88 nasa hubble esa hubblespacetelescope telescope spacetelescope cosmos universe space cosmic astronomy galaxy",
                "author_id": "144614754@N02",
                "published": "2026-05-29T14:41:06Z",
                "date_taken": "2026-05-29T10:00:00-08:00"
            },
            {
                "link": "https://www.flickr.com/photos/nasa2explore/14616686451/",
                "tags": [],
                "title": "s70-56409",
                "author": "NASA Johnson",
                "images": {
                    "large": "https://live.staticflickr.com/3880/14616686451_30926e6b51_b.jpg",
                    "small": "https://live.staticflickr.com/3880/14616686451_30926e6b51_n.jpg",
                    "medium": "https://live.staticflickr.com/3880/14616686451_30926e6b51_z.jpg",
                    "square": "https://live.staticflickr.com/3880/14616686451_30926e6b51_q.jpg",
                    "thumbnail": "https://live.staticflickr.com/3880/14616686451_30926e6b51_m.jpg"
                },
                "photo_id": "14616686451",
                "tags_raw": null,
                "author_id": "29988733@N04",
                "published": "2014-07-10T13:36:08Z",
                "date_taken": "2013-09-11T19:21:24-08:00"
            },
            {
                "link": "https://www.flickr.com/photos/nasamarshall/55187293008/",
                "tags": [
                    "nasa",
                    "marshallspaceflightcenter",
                    "msfc",
                    "spacelaunchsystem",
                    "rocket",
         
…