Skip to main content
GET
/
crm
/
{resource}
List resources for an end user, optionally filtered by provider
curl --request GET \
  --url https://api.routemcp.io/api/v1/crm/{resource} \
  --header 'Authorization: <api-key>' \
  --header 'X-End-User-Id: <x-end-user-id>'
{ "success": true, "statusCode": 200, "message": "OK", "data": { "data": [ { "id": "12345", "remote_id": "12345", "first_name": "Jane", "last_name": "Doe", "email": "jane.doe@example.com", "phone": "+1-555-0100", "job_title": "VP of Sales", "address": { "street_1": "123 Main St", "city": "San Francisco", "state": "CA", "postal_code": "94105", "country": "US" }, "lifecycle_stage": "customer", "owner": "67823451", "owner_name": "John Smith", "owner_email": "john.smith@acme.com", "source": null, "remote_created_at": "2025-01-15T10:00:00.000Z", "remote_updated_at": "2025-03-01T14:30:00.000Z", "providerSlug": "hubspot", "providerId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890" } ], "pagination": { "cursor": null, "hasMore": false, "limit": 25 } } }

Documentation Index

Fetch the complete documentation index at: https://docs.routemcp.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Enter your API key with the Bearer prefix — e.g. Bearer sk_live_xxx (production) or Bearer sk_test_xxx (sandbox)

Headers

X-End-User-Id
string
required
Example:

"user-001"

Path Parameters

resource
enum<string>
required

The CRM resource type to query

Available options:
contact,
lead,
deal,
meeting,
owner,
company,
note,
task,
pipeline,
activity,
appointment

Query Parameters

provider
string
Example:

"hubspot"

cursor
string
Example:

"eyJodWJzcG90IjoiMTAwIn0"

limit
string
Example:

"25"

enrich
string

"true" (default), "false" to skip, or comma-separated field names

Example:

"true"

Response

Paginated list of CRM resources