Discover/Context API
live

Context APIcontext.dev

Access Context.dev pricing plans and product changelog via API. Retrieve plan tiers, credit allowances, features, overage costs, and dated release notes.

This API takes change requests — .
Endpoint health
verified 10h ago
get_pricing
get_changelog
2/2 passing latest checkself-healing
Endpoints
2
Updated
10h ago

What is the Context API?

This API exposes 2 endpoints covering context.dev's current pricing structure and product changelog. The get_pricing endpoint returns all plan tiers — Free, Developer, Pro, and Scale — with monthly and annual prices, credit allowances, and overage rates. The get_changelog endpoint returns up to 100 dated changelog entries ordered newest first, letting you programmatically track feature releases and service updates without visiting the site.

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

No input parameters required.

api.parse.bot/scraper/a0c609e9-bc29-483b-a9ea-5bd1fe799038/<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/a0c609e9-bc29-483b-a9ea-5bd1fe799038/get_pricing' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 2 totalmissing one? ·

Returns all current pricing plans from context.dev including Free, Developer, Pro, and Scale tiers with monthly/annual prices, credit allowances, features, and overage costs. Makes one request to the pricing page.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "plans": "array of plan objects with name, description, monthly_price, annual_price, monthly_credits, credit_cadence, features, and overage_price_per_10k"
  },
  "sample": {
    "data": {
      "plans": [
        {
          "name": "Free",
          "features": [
            {
              "text": "Scrape 500 pages",
              "detail": "1 credit per page — the best proxies, JS rendering & anti-bot bypass included"
            },
            {
              "text": "30 API calls per minute"
            }
          ],
          "description": "For testing out the API",
          "annual_price": null,
          "monthly_price": 0,
          "credit_cadence": "one-time",
          "monthly_credits": 500
        },
        {
          "name": "Developer",
          "features": [
            {
              "text": "Scrape 10,000 pages",
              "detail": "1 credit per page — the best proxies, JS rendering & anti-bot bypass included"
            }
          ],
          "description": "Building your first real workflow.",
          "annual_price": 250,
          "monthly_price": 25,
          "credit_cadence": "monthly",
          "monthly_credits": 10000,
          "overage_price_per_10k": 15
        }
      ]
    },
    "status": "success"
  }
}

About the Context API

Pricing Plans

The get_pricing endpoint takes no inputs and returns a plans array where each object includes name, description, monthly_price, annual_price, monthly_credits, credit_cadence, features, and overage_ cost details. This covers all four published tiers on context.dev — Free, Developer, Pro, and Scale — in a single call, making it straightforward to compare tiers or detect price changes over time.

Changelog Entries

The get_changelog endpoint accepts an optional limit integer (clamped between 1 and 100) and returns a total count alongside an entries array. Each entry carries a title, date, id, and content summary. Entries are ordered newest first, so setting limit=5 gives you the five most recent releases without fetching the full history.

Typical Usage Patterns

Because get_pricing reflects the live pricing page, polling it periodically lets you detect plan additions, price changes, or updated credit allowances without manual checks. get_changelog is useful for monitoring when context.dev ships new functionality — for example, checking whether a feature you depend on has changed or whether a new API endpoint has been announced.

Reliability & maintenanceVerified

The Context API is a managed, monitored endpoint for context.dev — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when context.dev 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 context.dev 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
10h ago
Latest check
2/2 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
  • Monitor context.dev pricing changes and alert your team when plan prices or credit allowances update.
  • Compare monthly vs. annual pricing across all four tiers to model cost projections for a SaaS budget.
  • Ingest the changelog into an internal feed to track when context.dev ships new features relevant to your integration.
  • Scrape overage costs from the pricing response to calculate true cost-per-credit at different usage levels.
  • Build a changelog digest that surfaces the latest N entries using the limit parameter for a weekly summary email.
  • Audit features fields across plan tiers to determine the minimum plan required for a specific capability.
  • Track changelog entry IDs over time to detect new releases since your last poll.
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 context.dev offer an official developer API?+
Context.dev is itself an API platform — it provides its own API product (documented at context.dev) for code search and repository intelligence. This Parse API separately exposes context.dev's pricing and changelog pages as structured data endpoints.
What does `get_changelog` return and how do I limit results?+
It returns a total integer and an entries array, each entry containing title, date, id, and content. Pass the optional limit parameter (integer, 1–100) to control how many entries come back. Entries are always ordered newest first, so limit=1 returns only the latest release.
Does `get_pricing` include overage pricing and credit cadence details?+
Yes. Each plan object in the plans array includes overage_ cost details alongside monthly_credits and credit_cadence, so you can determine both the included credit volume and the cost per credit beyond that limit.
Can I retrieve historical pricing snapshots or archived changelog content beyond 100 entries?+
Not currently. get_pricing reflects the current live pricing page only, and get_changelog is capped at 100 entries per call with no offset or pagination parameter. You can fork this API on Parse and revise it to add a pagination offset or a historical-snapshot storage layer.
Does the API expose user account data, API usage stats, or repository search results from context.dev?+
No — the API covers only the public pricing plans and the public changelog. Account data, usage dashboards, and repository search results are behind authentication and are not included. You can fork the API on Parse and revise it to add endpoints targeting other publicly accessible pages on context.dev.
Page content last updated . Spec covers 2 endpoints from context.dev.
Related APIs in Developer ToolsSee all →
nyainteriors.com API
nyainteriors.com API
developers.openai.com API
Check current pricing for all OpenAI models including GPT, image generation, audio, video, embeddings, and fine-tuning across different pricing tiers like Batch, Flex, Standard, and Priority. Get real-time cost information to compare rates and plan your API spending.
notte.cc API
Access data from notte.cc.
celebratodo.cl API
Explore and compare CelebraTodo's pricing plans and features to find the best digital event organization solution for your needs in Chile. Discover what each plan offers so you can choose the right package for organizing your events.
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.
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.
elements.envato.com API
Search and browse millions of creative assets from Envato Elements, including stock photos, videos, music, fonts, and templates across all categories. Get detailed information about specific items, pricing plans, and discover new content through keyword search and category browsing.
devex.com API
Search and explore global development opportunities including tenders, grants, job postings, news, organizations, and events all in one place. Find funding details, discover career opportunities, and stay updated on international development initiatives through a single integrated platform.