Marketplace
No threads yet
Live

get_schengen_visa_dropdown_options

videx.diplo.de

Returns every official dropdown/select option list used by the VIDEX short-term (Schengen) visa form at https://videx.diplo.de, with list identity, version, language, and key-label items. Labels are localized through the language argument.

Parameters1
Runs10
Updated10d ago
Operational10 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_schengen_visa_dropdown_options?

Returns every official dropdown/select option list used by the VIDEX short-term (Schengen) visa form at https://videx.diplo.de, with list identity, version, language, and key-label items. Labels are localized through the language argument. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass language and get the result back without maintaining a scraper.

Response

{
  "valueLists": [
    {
      "name": "<string>",
      "items": [
        {
          "key": "<string>",
          "value": "<string>"
        }
      ],
      "context": "<string>",
      "version": "<string>",
      "language": "<string>"
    }
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/c3cafce9-46a5-4f1f-ab6c-8a63db8a1c1e/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "c3cafce9-46a5-4f1f-ab6c-8a63db8a1c1e",
    "variables": {
        "language": "en"
    }
}'

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="c3cafce9-46a5-4f1f-ab6c-8a63db8a1c1e") — the "get_schengen_visa_dropdown_options" function, which returns every official dropdown/select option list used by the VIDEX short-term (Schengen) visa form at https://videx.diplo.de, with list identity, version, language, and key-label items. Labels are localized through the language argument..

It takes language (str). Return the result as structured JSON.