GET
/
api
/
v1
/
source-of-funds
Retrieve Source of Funds questions
const url = 'https://api.gnosispay.com/api/v1/source-of-funds';
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}, body: undefined};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
[
  {
    "question": "<string>",
    "answers": [
      "<string>"
    ]
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

locale
string

The locale for translating currency values (e.g., 'BR', 'UK')

Response

Successfully retrieved the Source of Funds questions.

question
string

The text of the question.

answers
string[]

The possible answers to the question.