/v1/user
A photographer's recent public photostream
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/flickr-api/v1/user" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/flickr-api/v1/user", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/flickr-api/v1/user");
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/user",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"count": 10,
"author": "NASA on The Commons",
"photos": [
{
"link": "https://www.flickr.com/photos/nasacommons/55322024011/",
"tags": [
"launchcomplex41",
"capecanaveral",
"launch",
"mars",
"viking1",
"titancentaurlaunch",
"titaniiiclaunchvehicle"
],
"title": "Viking 1 Launch to Mars",
"author": "NASA on The Commons",
"images": {
"large": "https://live.staticflickr.com/65535/55322024011_f9f40a3c20_b.jpg",
"small": "https://live.staticflickr.com/65535/55322024011_f9f40a3c20_n.jpg",
"medium": "https://live.staticflickr.com/65535/55322024011_f9f40a3c20_z.jpg",
"square": "https://live.staticflickr.com/65535/55322024011_f9f40a3c20_q.jpg",
"thumbnail": "https://live.staticflickr.com/65535/55322024011_f9f40a3c20_m.jpg"
},
"photo_id": "55322024011",
"tags_raw": "launchcomplex41 capecanaveral launch mars viking1 titancentaurlaunch titaniiiclaunchvehicle",
"author_id": "44494372@N05",
"published": "2026-06-08T13:30:00Z",
"date_taken": "1975-08-20T00:00:00-08:00"
},
{
"link": "https://www.flickr.com/photos/nasacommons/15660535605/",
"tags": [
"earthscience",
"earthobservatory"
],
"title": "Water Boundaries",
"author": "NASA on The Commons",
"images": {
"large": "https://live.staticflickr.com/3943/15660535605_f22d2cdd55_b.jpg",
"small": "https://live.staticflickr.com/3943/15660535605_f22d2cdd55_n.jpg",
"medium": "https://live.staticflickr.com/3943/15660535605_f22d2cdd55_z.jpg",
"square": "https://live.staticflickr.com/3943/15660535605_f22d2cdd55_q.jpg",
"thumbnail": "https://live.staticflickr.com/3943/15660535605_f22d2cdd55_m.jpg"
},
"photo_id": "15660535605",
"tags_raw": "earthscience earthobservatory",
"author_id": "44494372@N05",
"published": "2026-06-08T12:14:02Z",
"date_taken": "2003-12-02T14:17:39-08:00"
},
{
"link": "https://www.flickr.com/photos/nasacommons/18602821811/",
"tags": [
"spaceshuttleatlantis",
"atlantis",
"sts117",
"launch"
],
"title": "STS-117",
"author": "NASA on The Commons",
"images": {
"large":
…