/v1/meta
Service metadata
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
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_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"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
}