The endpoint returns the list of questions and answers related to trading with stocks and ETFs. The user must answer the questions before starting investing in stocks and ETFs.
Based on regulatory rules, users may need to retake the test after a certain time period or based on their trading activity. Check whether the user needs to complete or resubmit the test by calling GET /v1/users/{User-ID}
Note that some of the appropriateness questions and answers apply only to users with specific citizenship.
The parameter country
containing the user’s citizenship in Alpha-2 ISO 3166 format is mandatory.
You can pass the parameter Accept-Language
with a string containing ISO 639-1 language code to get the list of appropriateness questions and answers 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, the response will return the appropriateness questions and answers in English.
Success Response
Unauthorized
Invalid country
Error
Too Many Requests
Error
Maintenance or Service unavailable
{- "data": [
- {
- "id": 1,
- "label": "knowledge_and_experiance_in_stocks_investing",
- "sort": 1,
- "question": "How much knowledge and experience do you have with investing in stocks?",
- "type": "single_choice",
- "translation_key": "appropriateness.questions.one",
- "answers": [
- {
- "id": 1,
- "label": "little_or_no_knowledge_or_experience_in_stocks_investing",
- "sort": 1,
- "answer": "Little or no knowledge or experience.",
- "translation_key": "appropriateness.questions.one.answers.one"
}
]
}
], - "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"
}
}