Skip to main content
GET
/
{resource}
List resources for an end user, optionally filtered by provider
curl --request GET \
  --url http://localhost:5001/api/v1/{resource} \
  --header 'Authorization: <api-key>'
{
  "success": true,
  "statusCode": 200,
  "message": "OK",
  "data": {
    "data": [
      {
        "id": "12345",
        "remoteId": "12345",
        "firstName": "Jane",
        "lastName": "Doe",
        "email": "jane.doe@example.com",
        "phone": "+1-555-0100",
        "company": "Acme Corp",
        "jobTitle": "VP of Sales",
        "address": {
          "street": "123 Main St",
          "city": "San Francisco",
          "state": "CA",
          "postalCode": "94105",
          "country": "US"
        },
        "lifecycleStage": "customer",
        "ownerId": "67823451",
        "ownerName": "John Smith",
        "ownerEmail": "john.smith@acme.com",
        "source": null,
        "tags": null,
        "customFields": null,
        "createdAt": "2025-01-15T10:00:00.000Z",
        "updatedAt": "2025-03-01T14:30:00.000Z",
        "providerSlug": "hubspot",
        "providerId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
      }
    ],
    "pagination": {
      "cursor": null,
      "hasMore": false,
      "limit": 25
    }
  }
}

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)

Path Parameters

resource
enum<string>
required

The unified resource type to query

Available options:
contact,
lead,
deal,
meeting,
owner

Query Parameters

endUserId
string
required
Example:

"user-001"

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 unified resources