Prospector API
Read and manage saved Prospector outreach lists through the Agent API without triggering discovery, enrichment, scraping, or contact actions.
Use the Prospector Agent API to turn a known source or outreach opportunity into durable client workspace state. The API manages saved lists and their pipeline items only. It does not search for prospects, run backlink providers, enrich contacts, scrape pages, send email, or contact anyone.
Scopes and safety
prospector:readlists saved lists and items.prospector:writecreates, updates, or deletes saved list state.Every mutation requires a stable
Idempotency-Keyheader.Deletes also require the exact current list name or item URL in the request body.
All routes verify both organization and client ownership. A foreign list or item is returned as not found.
List saved outreach lists
GET /api/agent/v1/clients/:client_id/prospect-lists?limit=25&offset=0The response is newest-updated first and capped at 100 lists per page. Each row includes item_count and a status_breakdown for identified, contacted, in_discussion, won, and passed items.
Create a list
POST /api/agent/v1/clients/:client_id/prospect-lists
Idempotency-Key: client-citation-outreach-v1
Content-Type: application/json
{
"name": "Citation outreach",
"opportunity_type": "guest_post"
}opportunity_type is optional. Reusing the same key returns the same durable list instead of creating another list.
List pipeline items
The response contains compact target identity, URL, opportunity type, status, notes, contact path, and timestamps. It does not include scraped content or raw enrichment payloads.
Save one known prospect
Rankability normalizes HTTP/HTTPS URLs, rejects private or unsafe hosts, and de-duplicates canonical URL variants within the list. Saving an item records workflow state only; it does not fetch the URL.
Update pipeline state
Send at least one of status or notes. Set notes to null to clear it. This endpoint records what happened elsewhere; it never sends outreach.
Delete an item or list
Deleting an item requires the exact url returned by the item list:
Deleting a list requires its exact current name:
List deletion removes memberships and the list. It does not delete pages, external contacts, or unrelated Rankability evidence.
Last updated
Was this helpful?