Skip to main content

Static Groups

Base URL: https://app.neuroflash.com/api/digital-twin-service

Static groups are pre-built demographic segments with ready-to-use digital twins.

List Static Groups

GET/v1/static-groups

Get available static groups, optionally filtered by language.

Returns a list of predefined demographic and psychographic groups with their unique keys, labels, and descriptions.

Query Parameters:

  • language: Optional language code to filter groups ('en' or 'de'). If not provided, returns all groups including language-agnostic ones.

Requires authentication.

Query Parameters

ParameterTypeDefaultDescription
languagestringFilter by language: 'en' or 'de'

Example

curl "https://app.neuroflash.com/api/digital-twin-service/v1/static-groups" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"

Response:

[
{
"key": "gen_z",
"label": "Gen Z",
"description": "Generation Z, born between 1997 and 2012",
"language": "en"
}
]