Skip to main content
GET
/
api
/
public
/
v1
/
targeting-attributes
/
List Targeting Attributes
curl --request GET \
  --url https://api.userintuition.ai/api/public/v1/targeting-attributes/ \
  --header 'Authorization: Bearer <token>'
[
  {
    "qualification_id": 123,
    "name": "<string>",
    "category": "<string>",
    "type": "<string>",
    "question_text": "<string>",
    "options": [
      {
        "option_id": 123,
        "text": "<string>"
      }
    ]
  }
]

Authorizations

Authorization
string
header
required

Authenticate with an API key (prefixed ui_sk_) or a JWT token from the dashboard.

Response

200 - application/json

Successful Response

qualification_id
integer
required
name
string | null
category
string | null
type
string | null
question_text
string | null
options
PublicTargetingOptionCatalog · object[]