Skip to main content
GET
/
api
/
v1
/
profiles
/
{profileId}
Get profile
curl --request GET \
  --url http://localhost:3001/api/v1/profiles/{profileId} \
  --header 'x-api-key: <api-key>'
{
  "id": "<string>",
  "email": "<string>",
  "phone": "<string>",
  "sources": [
    "<string>"
  ],
  "properties": {},
  "segments": [
    {
      "id": "<string>",
      "name": "<string>",
      "type": "<string>"
    }
  ],
  "deliverySuppression": {
    "suppressed": true,
    "email": "<string>",
    "suppressedAt": "<string>",
    "latestBounceReason": "<string>",
    "latestBounceDiagnosticCode": "<string>"
  },
  "createdAt": "<string>",
  "updatedAt": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://segmentflow.ai/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

Unified API key for server-side SDK and API integrations

Path Parameters

profileId
string
required
Minimum string length: 1

Response

Default Response

Unified API view of a Profile row, with property data-lineage envelope and segment memberships.

id
string
required
email
string
required

Canonical email identifier from Profile.email (always present).

phone
string | null
required

Optional phone number from Profile.phone. Non-canonical in v1.

sources
string[]
required

Distinct segment_membership source tags for this Profile (e.g. 'form_submission', 'csv_import', 'shopify'). Used as a fallback when the Profile has no property assignments tagged with a source.

properties
object
required
segments
object[]
required
deliverySuppression
object
required
createdAt
string
required

ISO timestamp of when this Profile was created

updatedAt
string
required

ISO timestamp of when this Profile was last updated