externalUserId
. Attempts to reuse the same value will result in an error.⚠️ This endpoint belongs to the non-KYC integration model, which must be selected by the partner at the start of the integration. Users created this way cannot be upgraded to KYC users — full users must be created via the KYC onboarding flow if needed.
curl --location --request POST 'https://partner-api-stage.p100.io/v1/user/balances/crypto' \
--header 'Content-Type: application/json' \
--header 'x-api-key;' \
--data-raw '{
"externalUserId": "bca65c48-df49-4831-a7b2-de79033219",
"email": "johndoe@gmail.com",
"firstName": "John",
"lastName": "Doe",
"address": "Adama Matuszczaka 51/4",
"city": "Rzeszów",
"country": "PL",
"documentType": "PASSPORT",
"documentNumber": "CEV124630",
"pesel": "12345678901",
"birthCountry": "PL",
"birthDate": "2000-01-01"
}'
{
"userId": "db0e3f17-3ff0-481d-b543-ac5576c06650",
"balances": [
{
"id": "2d6be876-fe39-4518-9423-d39ce071df2b",
"amount": "0.00000000",
"name": "eth",
"wallet": null,
"rate": 3160.21051755,
"networkConfig": {
"ethereum": {
"mainnet": false,
"name": "sepolia",
"withdrawal": {
"feeWithdrawal": 0.003,
"minWithdrawal": 0.0006
},
"deposit": {
"minDeposit": 0
}
}
}
},
{
"id": "9e723c2e-3061-4dec-b90d-aba7ad632007",
"amount": "0.000000",
"name": "usdc",
"wallet": null,
"rate": 0.856822,
"networkConfig": {
"ethereum": {
"mainnet": false,
"name": "sepolia",
"withdrawal": {
"feeWithdrawal": 10,
"minWithdrawal": 1
},
"deposit": {
"minDeposit": 5
}
},
"polygon": {
"mainnet": false,
"name": "amoy",
"withdrawal": {
"feeWithdrawal": 0.5,
"minWithdrawal": 2
},
"deposit": {
"minDeposit": 0
}
}
}
},
{
"id": "ae62579a-dcab-4327-95b2-9534897ec30a",
"amount": "0.00",
"name": "eur",
"wallet": null,
"rate": 1
},
{
"id": "5c24f728-0365-4de5-9d3c-0475cad02b67",
"amount": "0.00000000",
"name": "ltc",
"wallet": null,
"rate": 103.62980236,
"networkConfig": {
"ltc": {
"mainnet": false,
"name": "test",
"withdrawal": {
"feeWithdrawal": 0.002,
"minWithdrawal": 0.001
},
"deposit": {
"minDeposit": 0
}
}
}
},
{
"id": "66d6588c-4a50-4bd4-8458-a94a7ae20e7a",
"amount": "0.00000000",
"name": "btc",
"wallet": null,
"rate": 98318.40634648,
"networkConfig": {
"btc": {
"mainnet": false,
"name": "test",
"withdrawal": {
"feeWithdrawal": 0.0003,
"minWithdrawal": 0.000001
},
"deposit": {
"minDeposit": 0
}
}
}
},
{
"id": "0bdcfa47-9617-4ad8-aab2-4e0f7003975d",
"amount": "0.00000000",
"name": "doge",
"wallet": null,
"rate": 0.17648657,
"networkConfig": {
"doge": {
"mainnet": false,
"name": "test",
"withdrawal": {
"feeWithdrawal": 5,
"minWithdrawal": 0.01
},
"deposit": {
"minDeposit": 0
}
}
}
},
{
"id": "362cada0-9da3-4318-98e1-9c6ceb7ae39b",
"amount": "0.00000000",
"name": "pol",
"wallet": null,
"rate": 0.2028634,
"networkConfig": {
"polygon": {
"mainnet": false,
"name": "amoy",
"withdrawal": {
"feeWithdrawal": 0.001,
"minWithdrawal": 0.00005
},
"deposit": {
"minDeposit": 0
}
}
}
}
]
}