Accept-Language with a string containing ISO 639-1 language code to get the list of Terms translated into the chosen language. Currently, Bitpanda supports translations for German, Polish, French, Spanish, Italian, and Turkish. The default language is English (en). If you pass the parameter for a language that does not have an existing translation in our database, the response returns the Terms in English.Authorization: ********************curl --location --request GET 'https://test.whitelabel.bitpanda.com/v1/terms?country=AT&account_type&user_journey&page_size=10&page=1' \
--header 'Accept-Language;' \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": 1,
"title": "User Agreement Bitpanda Enterprise EN",
"type": "securities_policy",
"version": "3.0.2",
"mandatory": true,
"effective_at": "2024-12-20T08:14:20+00:00",
"source": "https://www.bitpanda.com/en/legal#privacy"
}
],
"meta": {
"total_count": 48,
"page": 3,
"page_size": 10
},
"links": {
"first": "?page=1&page_size=10",
"last": "?page=5&page_size=10",
"prev": "?page=2&page_size=10",
"next": "?page=4&page_size=10",
"self": "?page=3&page_size=10"
}
}