Skip to main content
GET
https://apis.hopnow.io
/
v1
/
accounts
/
{account_id}
/
beneficiaries
/
{beneficiary_id}
Get Beneficiary
curl --request GET \
  --url https://apis.hopnow.io/v1/accounts/{account_id}/beneficiaries/{beneficiary_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "object": "<string>",
  "account_id": "<string>",
  "beneficiary_type": "<string>",
  "first_name": "<string>",
  "last_name": "<string>",
  "display_name": "<string>",
  "email": "<string>",
  "phone": "<string>",
  "address": {},
  "status": "<string>",
  "verified": true,
  "payout_destinations": [
    {}
  ],
  "created": "<string>",
  "updated": "<string>"
}

Path Parameters

account_id
string
required
The account’s external ID (starts with acc_)
beneficiary_id
string
required
The beneficiary’s external ID (starts with ben_)

Response

Returns the same structure as Create Beneficiary response.
id
string
Beneficiary identifier (starts with ben_)
object
string
Always returns "beneficiary"
account_id
string
Parent account external ID
beneficiary_type
string
Beneficiary type: individual or business
first_name
string
First name
last_name
string
Last name
display_name
string
Display name
email
string
Email address
phone
string
Phone number
address
object
Beneficiary address
status
string
Beneficiary status: active, disabled, or inactive
verified
boolean
Whether beneficiary has been verified
payout_destinations
array
Array of payout destination objects
created
string
ISO 8601 timestamp when created
updated
string
ISO 8601 timestamp when last updated

Response Example

{
  "id": "ben_1234567890abcdef",
  "object": "beneficiary",
  "account_id": "acc_1234567890abcdef",
  "beneficiary_type": "individual",
  "title": null,
  "first_name": "John",
  "middle_name": null,
  "last_name": "Doe",
  "display_name": "John Doe",
  "company_name": null,
  "email": "[email protected]",
  "phone": "+1234567890",
  "address": {
    "address_line": "123 Main St",
    "city": "New York",
    "region": "NY",
    "postal_code": "10001",
    "country": "US"
  },
  "tax_id": "123-45-6789",
  "country_code": "US",
  "note": null,
  "status": "active",
  "verified": true,
  "payout_destinations": [],
  "created": "2024-01-15T10:00:00Z",
  "updated": "2024-01-15T10:00:00Z"
}