Marketplace
No threads yet
Live

get_template_prompt_details

motionsites.ai

Retrieves full prompt text and template metadata by template ID from https://motionsites.ai. Free templates return full prompt text, while paid templates return metadata with prompt_text null unless access is available.

Parameters3
Runs8
Updated8d ago
Operational8 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_template_prompt_details?

Retrieves full prompt text and template metadata by template ID from https://motionsites.ai. Free templates return full prompt text, while paid templates return metadata with prompt_text null unless access is available. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass template_id, user_access_token, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "source": "<string>",
  "is_free": true,
  "metadata": {},
  "sections": [
    {
      "name": "<string>",
      "text": "<string>"
    }
  ],
  "prompt_text": "<string>",
  "template_id": "<string>",
  "access_status": "<string>",
  "section_names": [
    {
      "name": "<string>"
    }
  ],
  "status_message": "<string>",
  "owns_individually": true,
  "individual_price_usd": 0,
  "individual_price_cents": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/f3139ef3-43ac-4be3-9a0a-2e5528c3a33d/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "f3139ef3-43ac-4be3-9a0a-2e5528c3a33d",
    "variables": {
        "template_id": "planetary-pulse",
        "user_access_token": "",
        "timeout_seconds": 25
    }
}'

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="f3139ef3-43ac-4be3-9a0a-2e5528c3a33d") — the "get_template_prompt_details" function, which retrieves full prompt text and template metadata by template ID from https://motionsites.ai. Free templates return full prompt text, while paid templates return metadata with prompt_text null unless access is available..

It takes template_id (str), user_access_token (str), timeout_seconds (int). Return the result as structured JSON.