get_turkish_airlines_flight_status
turkishairlines.comGets current Turkish Airlines flight status by flight number and departure date from https://www.turkishairlines.com. Returns departure and arrival times, airports, aircraft, terminals, gate, distance, and has_flights=false when no flight operates on that date.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_turkish_airlines_flight_status?
Gets current Turkish Airlines flight status by flight number and departure date from https://www.turkishairlines.com. Returns departure and arrival times, airports, aircraft, terminals, gate, distance, and has_flights=false when no flight operates on that date. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass flight_number, departure_date, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"count": 0,
"flights": [
{}
],
"notices": [
"<string>"
],
"has_flights": true,
"departure_date": "<string>",
"flight_number_input": "<string>",
"normalized_flight_number": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/c776f6cb-867b-4ae5-aecf-306ab00709a7/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "c776f6cb-867b-4ae5-aecf-306ab00709a7",
"variables": {
"flight_number": "TK1",
"departure_date": "auto",
"timeout_seconds": 30
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="c776f6cb-867b-4ae5-aecf-306ab00709a7") — the "get_turkish_airlines_flight_status" function, which gets current Turkish Airlines flight status by flight number and departure date from https://www.turkishairlines.com. Returns departure and arrival times, airports, aircraft, terminals, gate, distance, and has_flights=false when no flight operates on that date.. It takes flight_number (str), departure_date (str), timeout_seconds (int). Return the result as structured JSON.