Discover/Example API
live

Example APIexample.com

Retrieve the title, paragraphs, and all hyperlinks from example.com in structured JSON. One endpoint, zero parameters, clean response fields.

This API takes change requests — .
Endpoint health
verified 8d ago
get_page_content
1/1 passing latest checkself-healing
Endpoints
1
Updated
1mo ago

What is the Example API?

The Example.com API exposes 1 endpoint — get_page_content — that returns the page's main heading, all paragraph text strings, and a full array of hyperlinks with their display text and href values. The response delivers 3 top-level fields covering the complete readable content of the page, ready for programmatic use without any client-side parsing.

Try it

No input parameters required.

api.parse.bot/scraper/5a9f9415-490d-4fe9-a7fd-720946ed2c27/<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/5a9f9415-490d-4fe9-a7fd-720946ed2c27/get_page_content' \
  -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 example-com-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.

from parse_apis.example.com_api import ExampleCom, Page, Link

client = ExampleCom()

page = client.pages.fetch()

print(page.title, len(page.paragraphs))

for link in page.links:
    print(link.text, link.href)
All endpoints · 1 totalmissing one? ·

Fetches the example.com page and returns its structured content: the page title (h1), all paragraph texts, and all links with their display text and href. No parameters required — the endpoint always fetches the current state of example.com. Returns a single Page resource containing the title, a list of paragraph strings, and a list of Link objects.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "links": "array of objects each with text (display text) and href (URL) keys",
    "title": "string - the main heading (h1) of the page",
    "paragraphs": "array of paragraph text strings extracted from all p elements"
  },
  "sample": {
    "data": {
      "links": [
        {
          "href": "https://iana.org/domains/example",
          "text": "Learn more"
        }
      ],
      "title": "Example Domain",
      "paragraphs": [
        "This domain is for use in documentation examples without needing permission. Avoid use in operations.",
        "Learn more"
      ]
    },
    "status": "success"
  }
}

About the Example API

What the API Returns

The get_page_content endpoint returns a structured JSON object with three fields: title (the main heading string), paragraphs (an ordered array of paragraph text strings), and links (an array of objects each containing a text key and an href key). No input parameters are required — calling the endpoint is sufficient to retrieve the full structured content.

Response Shape

The links array covers every anchor element on the page, giving you both the visible label (text) and the destination (href) for each one. The paragraphs array preserves document order, so the first element corresponds to the first paragraph in the page's content flow. The title field reflects the primary heading, not the HTML <title> tag, so it represents the human-visible page name.

Use and Scope

Because example.com is a minimal, well-known reference page maintained by IANA, the content it exposes is small and stable. The API is well suited for testing parsing pipelines, validating structured-data workflows, or demonstrating link and text extraction against a predictable, canonical source. The response structure is consistent across calls since the source page rarely changes.

Reliability & maintenanceVerified

The Example API is a managed, monitored endpoint for example.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when example.com 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 example.com 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
8d ago
Latest check
1/1 endpoint 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
  • Validate a link-extraction pipeline against the predictable links array from a stable reference page.
  • Test downstream text-processing code using the paragraphs array without managing your own fixture data.
  • Verify that href values in the links array resolve correctly as part of a URL validation workflow.
  • Use the title field as a known-good string in integration tests for heading-parsing logic.
  • Demonstrate structured data extraction to stakeholders using a publicly familiar, neutral domain.
  • Seed a demo dataset with real hyperlink objects (each with text and href) from a live source.
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 example.com have an official developer API?+
No. Example.com is a static reference page maintained by IANA (iana.org) for illustrative use in documentation. It has no official developer API or data service.
What does the `links` array in the response actually contain?+
Each element in links is an object with exactly two keys: text (the visible anchor label) and href (the destination URL). The array covers every hyperlink present on the page.
Does the API expose the HTML `<title>` tag or metadata like description and keywords?+
Not currently. The title field returns the main visible heading, and the API covers paragraphs and links as the other two fields. There is no separate field for the HTML <title> tag, meta description, or other head-element metadata. You can fork this API on Parse and revise it to add those fields.
Is the content from example.com likely to change between calls?+
Rarely. The page is a static IANA-maintained reference document that changes infrequently. However, the API always retrieves the current live version, so any official updates to the page will be reflected in the response.
Can I retrieve content from other IANA or IETF reference pages with this API?+
Not currently. The API is scoped specifically to example.com. You can fork it on Parse and revise the endpoint to target other reference pages or domains.
Page content last updated . Spec covers 1 endpoint from example.com.
Related APIs in Developer ToolsSee all →
crt.sh API
Search for SSL/TLS certificates across public transparency logs by domain, fingerprint, serial number, or public key, and retrieve detailed certificate information including issuer, validity dates, and certificate chain details. Monitor certificate issuance for domains you care about to track security changes and detect unauthorized certificates.
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.
python.org API
Access comprehensive Python release information including downloads, versions, and supported operating systems, plus stay updated with the latest Python news and events. Search across Python.org's resources and browse release files, details, and the FTP index all in one place.
nvidia.com API
nvidia.com API
lucide.dev API
Browse and download thousands of Lucide icons with instant search and category filtering to find exactly what you need. Get SVG files and metadata for each icon to integrate them seamlessly into your projects.
alienvault.com API
Search and analyze global threat intelligence data including indicators of compromise, threat pulses, and adversary profiles from the Open Threat Exchange community. Monitor recent security alerts and access detailed information about threats and adversaries to strengthen your cybersecurity defenses.
ask.brave.com API
Ask Brave's AI-powered answer engine to get intelligent responses on any topic complete with cited sources, or use the suggest endpoint to discover relevant information and follow-up questions. Get AI-generated answers that combine web knowledge with source attribution, helping you research topics efficiently and verify information through direct references.
httpbin.org API
Test HTTP requests and inspect what data your client is sending, including your IP address, headers, user agent, and generated UUIDs. Use it to verify how servers receive and process your requests during development and debugging.