Discover/Scrapely API
live

Scrapely APIscrapely.me

Access Scrapely's pricing plans, 86-platform catalog, and product feature definitions via 3 structured endpoints. JSON responses with full entitlements data.

Endpoint health
verified 1h ago
list_pricing_plans
list_platforms
get_product_features
3/3 passing latest checkself-healing
Endpoints
3
Updated
2h ago

What is the Scrapely API?

The Scrapely.me API exposes 3 endpoints covering the platform's self-serve pricing plans, its catalog of 86 searchable platforms, and the product features advertised on the Scrapely home page. The list_platforms endpoint returns each platform's stable platform_id, display name, primary domain, catalog group, and access tier. The list_pricing_plans endpoint delivers a full entitlements comparison table keyed by plan name, down to the footnote text.

This call costs1 credit / call— charged only on success
Try it

No input parameters required.

api.parse.bot/scraper/11cddd28-849b-40a6-95bc-a74a4bbce930/<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/11cddd28-849b-40a6-95bc-a74a4bbce930/list_pricing_plans' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 3 totalmissing one? ·

Returns every self-serve pricing plan shown on the pricing page (Free, Starter, Pro, Power, Team, Business at the time of writing) with monthly and annual listed prices in USD, headline highlights, and a per-plan entitlements map taken from the 'Compare entitlements' table. The same table is also returned feature-by-feature under comparison, so callers can read it either by plan or by feature. Numeric table cells are emitted as numbers; textual cells (e.g. 'Yes', '—', 'Queued') are strings. One page fetch; no pagination. Enterprise is not a listed plan and is only mentioned in notes.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "intro": "array of introductory paragraphs describing what paid plans buy and billing terms",
    "notes": "array of footnote paragraphs under the table (enterprise, coupons, cancellation)",
    "plans": "array of plan objects: name, plan_id (lowercased name), tagline, badge (label such as 'Most used paid' or null), monthly_price_usd, annual_price_usd (listed yearly total; null when not shown), annual_savings_vs_monthly_usd (difference vs 12 monthly payments; null for free), highlights (array of bullet strings from the card), cta (button label), entitlements (object keyed by feature name from the comparison table)",
    "currency": "ISO currency code of all price fields (read from the page's $ prices)",
    "headline": "pricing page headline text",
    "comparison": "array of {feature, values} rows from the entitlements table; values is an object keyed by plan name"
  },
  "sample": {
    "data": {
      "intro": [
        "Free is a working product with a ceiling. Paid plans buy more history, monitors, Scout capacity, AI credits, exports, and seats — not extra networks."
      ],
      "notes": [
        "Enterprise is a conversation, not a self-serve checkout. Contact . SSO is not shipping in this version."
      ],
      "plans": [
        {
          "cta": "Choose Starter",
          "name": "Starter",
          "badge": null,
          "plan_id": "starter",
          "tagline": "Solo researchers — more monitors and Scout scans.",
          "highlights": [
            "120 searches",
            "30 day history",
            "3 monitors",
            "Scout: 2 brand · 5 /day scans",
            "20 AI credits",
            "No API"
          ],
          "entitlements": {
            "AI credits": 20,
            "SSO / SAML": "Not in this version",
            "API requests": 0,
            "History (days)": 30,
            "Active monitors": 3,
            "Platform catalog": "Full catalog (same on every plan)",
            "Results / search": 80,
            "Searches / month": 120
          },
          "annual_price_usd": 180,
          "monthly_price_usd": 15,
          "annual_savings_vs_monthly_usd": 48
        }
      ],
      "currency": "USD",
      "headline": "Listed prices, honest limits",
      "comparison": [
        {
          "values": {
            "Pro": 500,
            "Free": 20,
            "Team": 8000,
            "Power": 2000,
            "Starter": 120,
            "Business": 20000
          },
          "feature": "Searches / month"
        }
      ]
    },
    "status": "success"
  }
}

About the Scrapely API

Pricing Plans and Entitlements

list_pricing_plans returns every self-serve plan (Free through Business at time of writing) with monthly_price_usd, a tagline, an optional badge such as "Most used paid", and a comparison array of {feature, values} rows pulled from the entitlements table. The values object is keyed by plan name, so you can diff any two plans programmatically. The response also includes intro paragraphs describing billing terms and notes paragraphs covering enterprise options, coupon behavior, and cancellation policy.

Platform Catalog

list_platforms returns the full catalog of platforms Scrapely's search covers — 86 entries at the time of writing. Each object carries a platform_id (the same identifier accepted by Scrapely's PLATFORM: search operator), name, domain, group, an access field (open, key, locked, or null), and an access_note string where applicable. An optional group query parameter filters results to a single catalog group; the response always includes the full groups array and a total count after filtering.

Product Features

get_product_features maps the home page content into structured fields: a tagline, a summary paragraph, an audiences array of {audience, description} pairs, a capabilities array of named workflow steps (Search, Scout, Inspect, Save, Monitor, Analyze, and others), and a result_record object describing the fields and search operators a result record exposes. The scout object breaks out the Scout feature separately with its own description and bullet points.

Reliability & maintenanceVerified

The Scrapely API is a managed, monitored endpoint for scrapely.me — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when scrapely.me 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 scrapely.me 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.

Last verified
1h ago
Latest check
3/3 endpoints passing
Maintenance
Monitored & self-healing
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 plan comparison widget using the comparison entitlements table from list_pricing_plans
  • Populate a platform selector UI by iterating the platforms array from list_platforms filtered by group
  • Validate a user-entered PLATFORM: search operator value against known platform_id slugs
  • Render a feature overview page by mapping capabilities and audiences from get_product_features
  • Track pricing changes over time by polling list_pricing_plans and diffing monthly_price_usd values
  • Identify which platforms require an API key by filtering list_platforms where access equals key
  • Enumerate all result_record.fields to document what data Scrapely returns per search result
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Scrapely have an official developer API?+
Scrapely does not currently publish an official public developer API. The endpoints here surface its pricing, platform catalog, and feature data as structured JSON.
What does the `access` field in `list_platforms` mean?+
The access field classifies each platform as open (no special credentials needed), key (requires an API key configured in Scrapely), locked (not currently accessible), or null (unclassified). An access_note string may accompany the value with additional context.
Can I retrieve historical pricing data or track plan changes over time?+
list_pricing_plans returns a current snapshot of published prices and entitlements; it does not include historical plan data or change logs. You can fork this API on Parse and revise it to store and diff successive snapshots to build a price history dataset.
Does the API return per-platform search result samples or live search output?+
No endpoint currently returns live search results or per-platform data samples. The API covers pricing plans, the platform catalog, and product feature definitions. You can fork it on Parse and revise to add an endpoint that calls Scrapely's search and returns result records.
How does the `group` filter work in `list_platforms`?+
Pass a group string (case-insensitive) as a query parameter and the response will include only platforms belonging to that catalog group. The response always returns the full groups array regardless of filtering, and the total field reflects the count after the filter is applied.
Page content last updated . Spec covers 3 endpoints from scrapely.me.
Related APIs in Developer ToolsSee all →
parallel.ai API
Access data from parallel.ai.
nyainteriors.com API
nyainteriors.com API
pricechecker.com API
Search and compare products listed on PriceCheck, including internet plans, data contracts, and electronics. Retrieve detailed pricing, specifications, and contract terms, and compare multiple listings side-by-side across providers.
thecompaniesapi.com API
Enrich your company database with 80+ data points per company, search by industry or company details, and discover email patterns to drive your business intelligence. Find verified company information, get pricing data, and ask contextual questions about any organization to fuel your sales, marketing, or research efforts.
getapp.com API
Search and compare software solutions while accessing detailed information like pricing, features, integrations, reviews, and alternatives all in one place. Get category leaders, read industry research from their blog, and make informed software decisions based on comprehensive data.
tollbit.com API
Identify and compare web crawlers and automated agents through TollBit's comprehensive directory, or evaluate third-party data collection services and their capabilities. Access detailed listings of known web visitors and service providers to understand what tools are accessing your site or to research available automation solutions.
scuffers.com API
Access data from scuffers.com.
context.dev API
Access Context.dev's current pricing plans and product changelog to stay informed about their latest features and service costs. Keep track of updates and pricing changes without manually visiting their website.