curl -H "X-API-KEY: your_api_key" \
"https://www.gomry.com/api/v1/contacts/AbCdEfGhIjKlMnOpQrSt"
{
"data": {
"id": "AbCdEfGhIjKlMnOpQrSt",
"first_name": "Jane",
"last_name": "Doe",
"email": "jane@example.com",
"phone_number": "+1234567890",
"status": "active",
"job_title": "Engineer",
"company": "Acme Inc",
"university": null,
"gender": null,
"birthday": null,
"location": "New York",
"linkedin": null,
"instagram": null,
"twitter": null,
"github": null,
"website": null,
"tags": ["vip"],
"created_at": "2025-03-01T00:00:00.000Z",
"updated_at": "2025-06-01T00:00:00.000Z"
}
}
Retrieve a single contact by ID
curl -H "X-API-KEY: your_api_key" \
"https://www.gomry.com/api/v1/contacts/AbCdEfGhIjKlMnOpQrSt"
{
"data": {
"id": "AbCdEfGhIjKlMnOpQrSt",
"first_name": "Jane",
"last_name": "Doe",
"email": "jane@example.com",
"phone_number": "+1234567890",
"status": "active",
"job_title": "Engineer",
"company": "Acme Inc",
"university": null,
"gender": null,
"birthday": null,
"location": "New York",
"linkedin": null,
"instagram": null,
"twitter": null,
"github": null,
"website": null,
"tags": ["vip"],
"created_at": "2025-03-01T00:00:00.000Z",
"updated_at": "2025-06-01T00:00:00.000Z"
}
}
Show Contact object
curl -H "X-API-KEY: your_api_key" \
"https://www.gomry.com/api/v1/contacts/AbCdEfGhIjKlMnOpQrSt"
{
"data": {
"id": "AbCdEfGhIjKlMnOpQrSt",
"first_name": "Jane",
"last_name": "Doe",
"email": "jane@example.com",
"phone_number": "+1234567890",
"status": "active",
"job_title": "Engineer",
"company": "Acme Inc",
"university": null,
"gender": null,
"birthday": null,
"location": "New York",
"linkedin": null,
"instagram": null,
"twitter": null,
"github": null,
"website": null,
"tags": ["vip"],
"created_at": "2025-03-01T00:00:00.000Z",
"updated_at": "2025-06-01T00:00:00.000Z"
}
}