v1

latestOpenAPI 3.1.02026-07-2419603.1 MB
Data Activation

Get publicly available profile attributes

Retrieve publicly available attributes for a profile identified by cookie_id. This endpoint returns only attributes that are marked as publicly accessible and does not require authentication.

In order to secure the PII data, no attribute is returned by default. You need to put each attribute you want to access on the attribute whitelist before it'll be returned by this endpoint. In order to do that, go to Customer Data Platform > Attributes tab and enable attribute for the public API access. It is your responsibility to make sure no user PII data will be available via API.

get/api/cdp/v3/profiles/public/apps/{app_id}/profiles/{cookie_id}/public-attributes

Path parameters

app_idstring uuid required

ID of the app.

Example:3929d56c-cd62-4001-a4fc-013f5f954691
cookie_idstring required
Example:3a0133748b3e524c

Cookie ID stored in cookies

Response

Publicly available profile attributes

object required

Publicly available profile attributes that can be accessed without authentication.

In order to secure the PII data, no attribute is returned by default. You need to put each attribute you want to access on the attribute whitelist before it'll be returned by this endpoint. In order to do that, go to Customer Data Platform > Attributes tab and enable attribute for the public API access. It is your responsibility to make sure no user PII data will be available via API.

Attributes with empty values (null, empty arrays) are skipped and not included in the response.

Example response

{
  "browser_name": [
    [
      "CH",
      "Chrome"
    ],
    [
      "CH",
      "Chrome"
    ]
  ],
  "total_revenue": 3075,
  "first_activity": "2025-09-22T17:39:22.830453Z",
  "ipv4_address": [
    "146.59.92.216",
    "178.238.11.6"
  ],
  "goal_uuids": [
    "f6bc167f-960f-4666-b208-e066dd430404",
    "71ff815b-9558-43b9-be72-f784f8985461",
    "c83656ee-882d-4d31-be10-3ac7eb5ffde5",
    "b206480d-9ed7-4bd9-83fb-ba644df81385"
  ],
  "session_custom_dimension_1": [
    "Male"
  ]
}