> ## Documentation Index
> Fetch the complete documentation index at: https://docs.teel.finance/llms.txt
> Use this file to discover all available pages before exploring further.

# Get recipient

> Fetch a single recipient by ID

Returns `404` if the ID isn't yours.

<Info>**Scope** `recipients:read`</Info>

## Headers

<ParamField header="Authorization" type="string" required>
  API key.
</ParamField>

## Path parameters

<ParamField path="id" type="string" required>
  Recipient UUID.
</ParamField>

## Response

<ResponseField name="id" type="string">UUID.</ResponseField>

<ResponseField name="email" type="string" />

<ResponseField name="isBusiness" type="boolean" />

<ResponseField name="businessName" type="string" />

<ResponseField name="firstName" type="string" />

<ResponseField name="lastName" type="string" />

<ResponseField name="country" type="string">ISO 3166-1 alpha-2.</ResponseField>

<ResponseField name="currency" type="string" />

<ResponseField name="phone" type="string" />

<ResponseField name="address" type="object">
  <Expandable title="address">
    <ResponseField name="streetLine1" type="string" />

    <ResponseField name="streetLine2" type="string" />

    <ResponseField name="city" type="string" />

    <ResponseField name="state" type="string" />

    <ResponseField name="postalCode" type="string" />

    <ResponseField name="country" type="string" />
  </Expandable>
</ResponseField>

<ResponseField name="transferType" type="string">`"fiat"` or `"stablecoin"`.</ResponseField>
<ResponseField name="walletAddresses" type="object">Chain ID → address, when `transferType` is `"stablecoin"`.</ResponseField>
<ResponseField name="externalReference" type="object">Map of `string` → `string`.</ResponseField>
<ResponseField name="status" type="string">`"pending"`, `"accepted"`, or `"rejected"`.</ResponseField>
<ResponseField name="createdAt" type="string">ISO 8601.</ResponseField>
<ResponseField name="updatedAt" type="string">ISO 8601.</ResponseField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "id": "8b1a4c1d-7a3c-4a08-94ad-9f1ef1e0c3a2",
    "email": "payments@acme-ph.com",
    "isBusiness": true,
    "businessName": "Acme Corp Philippines",
    "country": "PH",
    "currency": "PHP",
    "phone": "+639170000000",
    "address": {
      "streetLine1": "100 Acme Ave",
      "city": "Makati",
      "state": "Metro Manila",
      "postalCode": "1226",
      "country": "PH"
    },
    "transferType": "fiat",
    "externalReference": { "vendor_id": "ACME-001" },
    "status": "accepted",
    "createdAt": "2026-06-09T10:00:00Z",
    "updatedAt": "2026-06-09T10:00:00Z"
  }
  ```
</ResponseExample>
