Live
get_airline_photo_gallery
web.archive.orgReturns the complete Skytrax airline photo gallery from https://airlinequality.com for a gallery review ID, including full-size and thumbnail image URLs.
Parameters1
Runs3
Updated1h ago
Operational3 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_airline_photo_gallery?
Returns the complete Skytrax airline photo gallery from https://airlinequality.com for a gallery review ID, including full-size and thumbnail image URLs. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass review_id and get the result back without maintaining a scraper.
Response
{
"photos": [
{
"full_size_url": "<string>",
"thumbnail_url": "<string>"
}
],
"review_id": "<string>",
"data_as_of": "<string>",
"source_url": "<string>",
"photo_count": 0,
"airline_name": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/420d0fe7-0e3b-4383-aa74-a7651dc8c92a/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "420d0fe7-0e3b-4383-aa74-a7651dc8c92a",
"variables": {
"review_id": "156008"
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="420d0fe7-0e3b-4383-aa74-a7651dc8c92a") — the "get_airline_photo_gallery" function, which returns the complete Skytrax airline photo gallery from https://airlinequality.com for a gallery review ID, including full-size and thumbnail image URLs.. It takes review_id (str). Return the result as structured JSON.