Skip to main content
GET
/
{resource}
/
{id}
Get a single resource by provider-native ID
curl --request GET \
  --url http://localhost:5001/api/v1/{resource}/{id} \
  --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"
    }
  }
}

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
Available options:
contact,
lead,
deal,
meeting,
owner
id
string
required

Provider-native ID of the record

Example:

"12345"

Query Parameters

provider
string
required
Example:

"hubspot"

endUserId
string
required
Example:

"user-001"

enrich
string
Example:

"true"

Response

Single unified resource record