Retrieve Contact
Path Parameters
contact_idstringRequired
Unique contact identifier
import Reloop from 'reloop-email';
const reloop = new Reloop('re_123456789');
const { response: contact, error } = await reloop.contacts().get('cont_123456789');
if (error) throw error;{
"object": "contact",
"id": "con_123456789",
"email": "john.doe@example.com",
"firstName": "John",
"lastName": "Doe",
"status": "subscribed",
"properties": {
"company": "Reloop",
"role": "Developer"
},
"groups": [
{
"id": "grp_123",
"name": "Beta Testers"
}
],
"channels": [
{
"id": "tpc_123",
"name": "Newsletter",
"subscription": "opt_in"
}
],
"suppressionReason": null,
"suppressedAt": null,
"createdAt": "2026-03-23T10:00:00Z",
"updatedAt": "2026-03-23T10:00:00Z"
}Was this page helpful?