Skip to main content
GET
/
v1
/
customers
/
{customer_id}
cURL
curl --request GET \
  --url https://{base_url}/v1/customers/{customer_id} \
  --header 'Authorization: <authorization>'
{
  "data": {
    "customer_id": "<customer_id>",
    "type": "INDIVIDUAL",
    "first_name": "John",
    "last_name": "Doe",
    "email": "john@doe.com",
    "phone": "+61412345678",
    "country_of_residence": "AUS",
    "customer_status": "APPROVED",
    "tos_policies_url": "https://pipes.tech/orchestration-customer-tos?customer_id=88c6d35e-897b-4cc7-96d1-894d7bcc5629&tos_policies_value=c88e847b-df92-413b-8f1f-7f5c8ee066a0",
    "created_at": "2025-10-10T15:40:56Z",
    "updated_at": "2025-10-10T16:02:44Z",
    "capabilities": {
      "on_ramp": [
        {
          "currency": "USD",
          "status": false,
          "methods": [
            "ACH",
            "FEDWIRE"
          ],
          "reason": {
            "for_customer": null,
            "for_developer": "Unsupported at the moment"
          }
        }
      ],
      "off_ramp": [
        {
          "currency": "USD",
          "status": false,
          "methods": [
            "ACH",
            "FEDWIRE",
            "ACH_SAME_DAY"
          ],
          "reason": {
            "for_customer": null,
            "for_developer": "Unsupported at the moment"
          }
        },
        {
          "currency": "EUR",
          "status": true,
          "methods": [
            "BANK"
          ],
          "reason": {
            "for_customer": null,
            "for_developer": null
          }
        },
        {
          "currency": "BDT",
          "status": true,
          "methods": [
            "BANK",
            "E_WALLET"
          ],
          "reason": {
            "for_customer": null,
            "for_developer": null
          }
        },
        {
          "currency": "AUD",
          "status": true,
          "methods": [
            "BANK"
          ],
          "reason": {
            "for_customer": null,
            "for_developer": null
          }
        },
        {
          "currency": "INR",
          "status": true,
          "methods": [
            "BANK"
          ],
          "reason": {
            "for_customer": null,
            "for_developer": null
          }
        },
        {
          "currency": "JPY",
          "status": true,
          "methods": [
            "BANK"
          ],
          "reason": {
            "for_customer": null,
            "for_developer": null
          }
        },
        {
          "currency": "NPR",
          "status": true,
          "methods": [
            "BANK"
          ],
          "reason": {
            "for_customer": null,
            "for_developer": null
          }
        },
        {
          "currency": "CAD",
          "status": true,
          "methods": [
            "BANK"
          ],
          "reason": {
            "for_customer": null,
            "for_developer": null
          }
        },
        {
          "currency": "PKR",
          "status": true,
          "methods": [
            "BANK"
          ],
          "reason": {
            "for_customer": null,
            "for_developer": null
          }
        },
        {
          "currency": "PHP",
          "status": true,
          "methods": [
            "BANK"
          ],
          "reason": {
            "for_customer": null,
            "for_developer": null
          }
        },
        {
          "currency": "SGD",
          "status": true,
          "methods": [
            "BANK"
          ],
          "reason": {
            "for_customer": null,
            "for_developer": null
          }
        },
        {
          "currency": "GBP",
          "status": true,
          "methods": [
            "BANK"
          ],
          "reason": {
            "for_customer": null,
            "for_developer": null
          }
        }
      ]
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://developer.fin.com/llms.txt

Use this file to discover all available pages before exploring further.

Use this endpoint to fetch individual customer details. For business customer details, use Get Customer Details V2.

Headers

Authorization
string
default:Bearer {{client_access_token}}
required

Path Parameters

customer_id
string
required

Response

data
object