Customers
Get Customer Wallets
Returns all crypto wallets linked to a customer across supported chains and tokens.
GET
/
v2
/
customers
/
{customer_id}
/
wallets
Get Customer Wallets
curl --request GET \
--url https://sandbox.api.fin.com/v2/customers/{customer_id}/wallets \
--header 'Authorization: Bearer <token>'const url = 'https://sandbox.api.fin.com/v2/customers/{customer_id}/wallets';
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));HttpResponse<String> response = Unirest.get("https://sandbox.api.fin.com/v2/customers/{customer_id}/wallets")
.header("Authorization", "Bearer <token>")
.asString();import requests
url = "https://sandbox.api.fin.com/v2/customers/{customer_id}/wallets"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://sandbox.api.fin.com/v2/customers/{customer_id}/wallets"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"data": [
{
"id": "27dbc0f2-e5ae-444b-b4ab-0764252aedf6",
"status": "ACTIVE",
"currency": "USDC",
"rail": "ETHEREUM",
"address": "0xc42a5f7083c7e8f1d9820c7660867277289cd998",
"balance": 10.000001
},
{
"id": "e1dcce59-0309-43de-ab6c-a0bd3497b9c3",
"status": "ACTIVE",
"currency": "USDC",
"rail": "SOLANA",
"address": "BCSZEokfpVsSpUuuZJMScLiUpYjvvUmrrAJkNbrTTnng",
"balance": 25.000001
},
{
"id": "c92dfe1d-220e-4446-a5e4-cd7d46031ba5",
"status": "PENDING",
"currency": "USDC",
"rail": "POLYGON",
"address": null,
"balance": 0
}
]
}{
"message": "Authentication failed"
}{
"message": "Resource not found"
}Fin.com issued crypto wallets require pre-configuration. Contact support to learn more.
| Rail | Currency |
|---|---|
| POLYGON | USDC |
| ETHEREUM | USDC |
| SOLANA | USDC |
address is null until the wallet finishes provisioning (see status on Create Customer Wallets).Authorizations
Bearer token authentication. Obtain token from Issue a Token endpoint
Path Parameters
Response
Customer wallets retrieved successfully
Show child attributes
Show child attributes
⌘I
Get Customer Wallets
curl --request GET \
--url https://sandbox.api.fin.com/v2/customers/{customer_id}/wallets \
--header 'Authorization: Bearer <token>'const url = 'https://sandbox.api.fin.com/v2/customers/{customer_id}/wallets';
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));HttpResponse<String> response = Unirest.get("https://sandbox.api.fin.com/v2/customers/{customer_id}/wallets")
.header("Authorization", "Bearer <token>")
.asString();import requests
url = "https://sandbox.api.fin.com/v2/customers/{customer_id}/wallets"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://sandbox.api.fin.com/v2/customers/{customer_id}/wallets"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"data": [
{
"id": "27dbc0f2-e5ae-444b-b4ab-0764252aedf6",
"status": "ACTIVE",
"currency": "USDC",
"rail": "ETHEREUM",
"address": "0xc42a5f7083c7e8f1d9820c7660867277289cd998",
"balance": 10.000001
},
{
"id": "e1dcce59-0309-43de-ab6c-a0bd3497b9c3",
"status": "ACTIVE",
"currency": "USDC",
"rail": "SOLANA",
"address": "BCSZEokfpVsSpUuuZJMScLiUpYjvvUmrrAJkNbrTTnng",
"balance": 25.000001
},
{
"id": "c92dfe1d-220e-4446-a5e4-cd7d46031ba5",
"status": "PENDING",
"currency": "USDC",
"rail": "POLYGON",
"address": null,
"balance": 0
}
]
}{
"message": "Authentication failed"
}{
"message": "Resource not found"
}