API use cases and integration patterns
Choose the correct Rankability API workflow and design reliable content, research, reporting, audit, and crawler integrations.
Choose an API surface based on the result you need. Similar-looking Rankability operations can have different scopes, billing, execution time, and outputs.
Choose the right surface
Keyword-research workflow
Create a key with
researcher:runandresearcher:read.Submit one to 20 topics and the appropriate research mode.
Store the returned
job_idand whether the response was cached.Poll until
completed,empty, orfailed.Use the completed result directly, or separately read saved Researcher projects.
Do not assume creating an API research job automatically creates a saved Researcher project. See Researcher API.
Tracking and dashboard workflow
Start read-only. A dashboard normally needs only reporter:read:
List projects.
Read project detail for SPI and current platform coverage.
Read results using the default
latest_per_platformsnapshot.Read trends for completed and partial terminal runs.
Use the organization or brand summary only when its aggregation matches the report you are building.
Add reporter:run only if the integration must trigger scans. Add reporter:write only if it must create, change, or delete projects. These legacy scope names authorize Tracker. Read Tracker API onboarding before automating scans.
Audit workflow
Use Page Auditor when one URL and target keyword need scored page-level recommendations. Use Site Auditor when a domain needs a multi-page crawl, issue inventory, and page evidence.
For Site Auditor:
Estimate the crawl cost.
Create the project, which starts the first crawl.
Poll the project until a terminal state.
Read its pages and issues.
Cancel before deleting an in-progress crawl.
Site Auditor and the bounded Crawler API are not interchangeable. Site Auditor produces audit issues and summary metrics; Crawl returns crawler job pages and fetch diagnostics.
Fetch and extraction workflow
Use Scrape when you need one fetched page with SEO/AEO data. Use Crawl for a bounded, same-domain collection. Use Extract when you need a grounded answer, relevant passages, or caller-defined fields from a URL, an existing crawler page, or supplied content.
Check /crawler/usage before large jobs. A crawl reserves its maximum page budget against the daily page quota but bills only successfully crawled pages.
Reliability pattern
For every integration:
Use a separate least-privilege key.
Record
X-Request-Idand limit headers.Send
Idempotency-Keywhere supported.Persist returned IDs before polling.
Back off polling and stop at terminal states.
Distinguish a missing result from a failed or still-running job.
Confirm credit and partial-result behavior before retrying.
Require the human review appropriate to generated content or high-impact actions.
Returned headers are authoritative. Current Rankability plans use plan-aware limits of 30, 60, or 120 requests per minute; existing full-platform plans currently use 60. Integrations should not encode plan names or assumed limits.
Review Authentication and API scopes and API credits, rate limits, and errors before moving an integration into production.
Last updated
Was this helpful?