Skip to main content
GET
/
v1
/
instruments
/
{id}
Get an instrument
curl --request GET \
  --url https://api.antonpayments.com/v1/instruments/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "ins_abc123",
    "payee_id": "<string>",
    "merchant_id": "<string>",
    "method": "iban",
    "currency": "<string>",
    "country": "<string>",
    "label": "<string>",
    "display_last4": "<string>",
    "display_bank": "<string>",
    "display_network": "<string>",
    "masked_account": "<string>",
    "status": "active",
    "is_default": true,
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

Merchant API key: ak_live_* (production) or ak_test_* (sandbox).

Path Parameters

id
string
required

Resource identifier.

Response

Instrument details.

data
object
required