Skip to main content
GET
/
v1
/
records
/
{record_id}
Get a specific record by ID
curl --request GET \
  --url https://app.nex.ai/api/developers/v1/records/{record_id} \
  --header 'Authorization: <api-key>'
{
  "id": "32414268188027655",
  "object_id": "32414268188027650",
  "type": "person",
  "workspace_id": "32414268188027645",
  "created_at": "2024-01-15T14:20:00Z",
  "updated_at": "2024-01-20T09:15:00Z",
  "attributes": {
    "name": {
      "first_name": "Alice",
      "last_name": "Johnson"
    },
    "email_addresses": [
      "[email protected]"
    ],
    "job_title": "Product Manager",
    "phone_number": {
      "country_code": 1,
      "number": "5551112222"
    },
    "location": {
      "street": "456 Innovation Dr",
      "city": "Austin",
      "region": "TX",
      "postal_code": "73301",
      "country": "US"
    },
    "linkedin": {
      "username": "alicejohnson",
      "url": "https://linkedin.com/in/alicejohnson"
    }
  }
}

Authorizations

Authorization
string
header
required

API key for authentication (format: "Bearer YOUR_API_KEY")

Path Parameters

record_id
integer
required

Record ID

Response

Record details with attributes

attributes
object
created_at
string
id
string
object_id
string
type
string
updated_at
string
workspace_id
string