API Reference

Retrieve Contact Property

GET /contact-properties/:id — retrieve a contact property by its ID.

GET/contact-properties/:id

Retrieve a single contact property by its ID.

Path parameters
contact_property_idstringrequired

The Contact Property ID.

import { MailBlastr } from 'mailblastr';

const mb = new MailBlastr('mb_xxxxxxxxx');

const { data, error } = await mb.contactProperties.get('b6d24b8e-af0b-4c3c-be0c-359bbd97381e');
console.log({ data, error });

Response

{
  "object": "contact_property",
  "id": "b6d24b8e-af0b-4c3c-be0c-359bbd97381e",
  "key": "company_name",
  "type": "string",
  "fallback_value": "Acme Corp",
  "created_at": "2026-04-08T00:11:13.000Z"
}