Discover/MotionSites API
live

MotionSites APImotionsites.ai

Access the full MotionSites AI catalog of website design prompts via API. List, filter, and retrieve free and premium AI prompt templates by category or pricing tier.

This API takes change requests — .
Endpoint health
monitored
get_prompt
list_prompts
Checks pendingself-healing
Endpoints
2
Updated
4h ago

What is the MotionSites API?

The MotionSites AI API provides 2 endpoints for querying and retrieving AI website design prompt templates from motionsites.ai. Use list_prompts to browse the full catalog with filtering by category and pricing tier, or call get_prompt with a specific prompt slug to retrieve complete prompt text, section names, asset download URLs, and individual purchase pricing for any template in the library.

This call costs1 credit / call— charged only on success
Try it
Filter by pricing tier. Omitting returns all prompts.
Filter by category name (case-insensitive partial match, e.g. 'Travel', 'SaaS', 'Landing Page').
api.parse.bot/scraper/d92552a0-f057-47bb-9042-37c7babddaae/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/d92552a0-f057-47bb-9042-37c7babddaae/list_prompts?pricing=free&category=Travel' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace motionsites-ai-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: MotionSites AI SDK — bounded, re-runnable; every call capped."""
from parse_apis.MotionSites_AI_API import MotionSites, Pricing, ParseError

client = MotionSites()

# List free travel prompts
for prompt in client.prompts.list(category="Travel", pricing=Pricing.FREE, limit=3):
    print(prompt.title, prompt.category, prompt.is_free)

# Grab one prompt and navigate to its full detail
item = client.prompts.list(pricing=Pricing.FREE, limit=1).first()

try:
    detail = item.details()
    print(detail.prompt_id, detail.prompt_text[:100] if detail.prompt_text else "premium-locked")
except ParseError as e:
    print("error:", e.code)

print("exercised: prompts.list, prompt.details")
All endpoints · 2 totalmissing one? ·

Lists all available AI website design prompts/templates. Each prompt has metadata including title, category, type, pricing tier (free or premium), and preview URLs. Results can be filtered by category (fuzzy match) and pricing tier. When no filters are applied, returns the complete catalog across all categories and both pricing tiers in a single response, ordered by newest first.

Input
ParamTypeDescription
pricingstringFilter by pricing tier. Omitting returns all prompts.
categorystringFilter by category name (case-insensitive partial match, e.g. 'Travel', 'SaaS', 'Landing Page').
Response
{
  "type": "object",
  "fields": {
    "total": "integer count of prompts returned",
    "prompts": "array of prompt summary objects"
  },
  "sample": {
    "total": 8,
    "prompts": [
      {
        "id": "mostar-guide",
        "type": "hero",
        "title": "Mostar Guide",
        "types": null,
        "is_free": true,
        "category": "Travel",
        "created_at": "2026-07-30T23:50:07.283374+00:00",
        "has_assets": false,
        "image_preview_url": null,
        "video_preview_url": "https://pub-86dc5b5484314368ac5436a674b0d919.r2.dev/a/CleanShot%202026-07-31%20at%2007.43.14.mp4"
      }
    ]
  }
}

About the MotionSites API

What the API Covers

The MotionSites AI API exposes the catalog of AI-generated website design prompts available at motionsites.ai. Each prompt is a structured template targeting a specific site category — examples include Travel, SaaS, and Landing Page — and is classified as either free or premium. The catalog returns metadata fields including title, category, type, pricing tier, and preview URLs for every prompt.

Listing and Filtering Prompts

The list_prompts endpoint returns the entire catalog in a single response, including a total count and an array of prompt summary objects. Two optional parameters narrow results: pricing filters by tier (free or premium), and category accepts a case-insensitive partial string match against category names, so passing 'SaaS' or 'saas' both work. No pagination is required — all matching prompts are returned at once.

Retrieving a Full Prompt

The get_prompt endpoint accepts a prompt_id slug (obtainable from list_prompts results, e.g. 'mostar-guide') and returns the complete record for that template. The response includes prompt_text (the full AI prompt string), a sections array, section_names, an asset_download_url if downloadable assets are attached, individual_price_cents for templates sold individually, and owns_individually to indicate whether access has been granted. For premium prompts without access, prompt_text is null while all other metadata fields remain populated.

Reliability & maintenance

The MotionSites API is a managed, monitored endpoint for motionsites.ai — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when motionsites.ai changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official motionsites.ai API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a prompt discovery tool filtered by category (e.g. 'Landing Page' or 'Travel') using list_prompts category filtering
  • Identify which MotionSites AI templates are available for free versus premium before directing users to purchase
  • Programmatically retrieve full prompt text for free templates via get_prompt to feed into downstream AI generation pipelines
  • Check individual_price_cents to surface per-prompt pricing in a custom storefront or comparison interface
  • Use asset_download_url responses to automate delivery of downloadable design assets after a purchase is recorded
  • Enumerate section_names from premium prompts to preview structural content without requiring full access
  • Sync the full MotionSites AI catalog into an internal database using the single-response list_prompts output
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does MotionSites AI have an official developer API?+
MotionSites AI does not publish a documented public developer API. This Parse API provides structured access to the catalog and prompt data available on motionsites.ai.
What does `get_prompt` return for premium prompts I haven't purchased?+
For premium prompts without purchase access, get_prompt returns all metadata fields — sections, section_names, individual_price_cents, and owns_individually — but prompt_text is null. Full prompt text is only returned when owns_individually is true or the prompt is free.
Can I filter `list_prompts` by multiple categories at once?+
The category parameter accepts a single partial-match string per request. Multi-category filtering in one call is not currently supported. The API covers single category filtering and pricing-tier filtering. You can fork it on Parse and revise to add support for multiple simultaneous category filters.
Does the API expose user account data, purchase history, or subscription status?+
Not currently. The API covers catalog metadata, prompt text for accessible templates, and per-prompt purchase pricing. User account details, purchase history, and subscription records are not exposed as endpoints. You can fork it on Parse and revise to add endpoints covering those areas if the source exposes them.
How fresh is the catalog returned by `list_prompts`?+
The catalog reflects the prompts currently listed on motionsites.ai. New templates added to the site will appear in list_prompts results; removed templates will no longer be returned. There is no built-in changelog or delta endpoint for tracking additions and removals over time.
Page content last updated . Spec covers 2 endpoints from motionsites.ai.
Related APIs in Developer ToolsSee all →
toolify.ai API
Search and browse premium .ai domain names available on the Toolify marketplace, filtering by keywords, categories, prices, and domain attributes to find the perfect domain for your project. Explore curated domain listings organized by category to discover valuable .ai domains suited to your needs.
agent.ai API
Search and discover AI agents in the Agent.ai marketplace by filtering through categories and tags, then view detailed agent information and builder profiles. Find the perfect AI solution for your needs by browsing available agents, exploring builder credentials, and comparing agent capabilities across different categories.
deepai.org API
Create stunning AI-generated images from text descriptions using over 123 different artistic styles like cyberpunk, anime, watercolor, and pixel art. Instantly transform your creative ideas into visual artwork and retrieve them as ready-to-use image files.
craiyon.com API
Generate custom AI images from text descriptions and search through a library of previously created AI-generated images. Get your results instantly as ready-to-use image files.
framer.com API
Search and browse thousands of website templates from the Framer Marketplace to find designs for portfolios, SaaS sites, agencies, and more. Get detailed information about specific templates to help you choose the perfect design before creating your site on Framer.
openai.com API
Access data from openai.com.
higgsfield.ai API
Search and browse AI-generated images created by the Higgsfield community, viewing the prompts, artistic styles, and metadata behind each generation. Discover creative inspiration by exploring how other users crafted their images and what techniques they used.
artificialanalysis.ai API
Compare and rank LLM models and providers across performance benchmarks, then dive into detailed specifications for any model to find the best fit for your needs. Discover performance metrics for specialized AI systems handling speech, images, and video, plus benchmark data for different hardware configurations.