Docs.copia.io APIDocs.copia.io ↗
Access the full Copia Automation documentation via API. List all 154 pages, full-text search, and retrieve page content with headings and breadcrumbs.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/fd298060-4c04-4c54-9ed5-170e668bb09c/list_pages' \ -H 'X-API-Key: $PARSE_API_KEY'
Returns the full table of contents for the Copia documentation site, including all page titles, paths, descriptions, and breadcrumb navigation hierarchy. Contains approximately 154 pages covering Git-Based Source Control, DeviceLink, Copilot, Actions, and Support sections.
No input parameters required.
{
"type": "object",
"fields": {
"pages": "array of page objects with id, title, path, description, and breadcrumbs",
"total": "integer - number of pages in the documentation"
},
"sample": {
"pages": [
{
"id": "zB1wc2VrN5sWpnJRKM7A",
"path": "/docs",
"title": "Introduction",
"breadcrumbs": [
"Overview"
],
"description": ""
},
{
"id": "gGjOG7wb4UFqpcHoUPX6",
"path": "/docs/overview/readme/overview",
"title": "Git-Based Source Control",
"breadcrumbs": [
"Overview",
"Introduction"
],
"description": "Git-based source control by Copia Automation"
}
],
"total": 154
}
}About the Docs.copia.io API
The Docs.copia.io API exposes 3 endpoints that cover the entire Copia Automation documentation site — roughly 154 pages spanning Git-Based Source Control, DeviceLink, Copilot, Actions, and Support. Use list_pages to retrieve the full table of contents, search_docs for ranked full-text search with excerpt snippets, and get_page to pull the structured text and headings of any specific documentation page.
Navigating the Documentation Structure
list_pages returns the complete table of contents for docs.copia.io as an array of page objects, each containing an id, title, path, description, and a breadcrumbs array that reflects the navigation hierarchy. The total field confirms the current page count, which is approximately 154 at the time of release. This is useful for building search indexes, content audits, or surfacing documentation coverage to end users.
Searching Across All Pages
search_docs accepts a query string and returns results ranked by relevance score. Each result includes the page title, path, breadcrumbs, and a best_section field — a short excerpt from the most relevant passage on that page. This makes it practical to present contextual previews without fetching the full page. Example queries include terms like 'DeviceLink backup', 'branching', or 'Rockwell' to target specific product areas or tasks.
Retrieving Full Page Content
get_page takes a path parameter such as 'overview/glossary' or 'git-based-source-control/getting-started' and returns the full content string alongside a headings array. Each heading object includes a level (integer 1–4) and text, letting you reconstruct the document outline. The response also includes the canonical url and normalized path for the page, which is useful for linking back to the source.
- Build an in-product help search for Copia Automation users using
search_docsrelevance scores andbest_sectionexcerpts. - Generate a site map or documentation index by calling
list_pagesand reading thebreadcrumbshierarchy. - Check documentation coverage for a specific feature area (e.g., DeviceLink or Copilot) by filtering
list_pagesresults by path prefix. - Feed structured heading outlines from
get_pageinto a knowledge base or LLM context window. - Monitor documentation changes over time by periodically calling
list_pagesand comparingtotaland pageidvalues. - Surface contextual help tooltips in an IDE or automation tool by querying
search_docswith user-entered terms and displayingbest_section. - Extract and index the full text of all documentation pages for offline search or compliance archiving using
get_pagein batch.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 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.
Does Copia Automation provide an official developer API for their documentation site?+
What does the `best_section` field in `search_docs` results contain?+
best_section field contains a short text excerpt from the highest-relevance passage on the matched page. It is meant to serve as a preview snippet — similar to a search engine snippet — so callers can show meaningful context without loading the full page via get_page.Does the API return the raw HTML or markdown source of documentation pages?+
get_page returns plain text via the content field and a structured headings array with level and text per heading. Raw HTML or original markdown source is not exposed. If you need to reconstruct document structure, the headings array (levels 1–4) is the primary tool available.Does the API cover documentation pages that require a login on docs.copia.io?+
list_pages reflect the publicly available documentation. You can fork this API on Parse and revise it to target additional paths if Copia makes more content publicly accessible in the future.Can I retrieve version-specific documentation or filter pages by product section?+
list_pages returns all pages, and get_page requires an exact path. You can filter by section client-side using the path or breadcrumbs fields returned by list_pages. You can fork this API on Parse and revise it to add a section or version filter endpoint if your use case requires it.