Skip to main content
GET
/
api
/
public
/
v1
/
studies
/
{study_id}
/
panel-countries
List Panel Countries
curl --request GET \
  --url https://api.userintuition.ai/api/public/v1/studies/{study_id}/panel-countries \
  --header 'Authorization: Bearer <token>'
{
  "language": "<string>",
  "countries": [
    {
      "code": "<string>",
      "name": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

study_id
string
required

Response

Successful Response

Country codes that support a study's interview language — usable to build a country picker (as the dashboard does).

language
string
required

The study's language code these countries support

countries
PublicPanelCountry · object[]