Marketplace
No threads yet
Live

fetch_free_content

motionsites.ai

Fetches all free MotionSites AI content from https://motionsites.ai in one call, grouped into hero prompts, landing page prompts, app prompts, backgrounds, and sections, with best-effort prompt text.

Parameters3
Runs11
Updated10d ago
Operational11 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 fetch_free_content?

Fetches all free MotionSites AI content from https://motionsites.ai in one call, grouped into hero prompts, landing page prompts, app prompts, backgrounds, and sections, with best-effort prompt text. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass include_prompt_text, max_prompt_texts, request_budget_seconds and get the result back without maintaining a scraper.

Response

{
  "counts": {},
  "source": "<string>",
  "app_prompts": [
    {}
  ],
  "backgrounds": [
    {}
  ],
  "hero_prompts": [
    {}
  ],
  "free_sections": [
    {}
  ],
  "full_text_note": "<string>",
  "prompt_text_summary": {},
  "landing_page_prompts": [
    {}
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/b14fbe11-8035-4c7d-8748-216825a9d299/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "b14fbe11-8035-4c7d-8748-216825a9d299",
    "variables": {
        "include_prompt_text": true,
        "max_prompt_texts": 48,
        "request_budget_seconds": 25.0
    }
}'

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="b14fbe11-8035-4c7d-8748-216825a9d299") — the "fetch_free_content" function, which fetches all free MotionSites AI content from https://motionsites.ai in one call, grouped into hero prompts, landing page prompts, app prompts, backgrounds, and sections, with best-effort prompt text..

It takes include_prompt_text (bool), max_prompt_texts (int), request_budget_seconds (float). Return the result as structured JSON.