Skip to main content
To access GBP and the FPS payment rail, please reach out to our team at [email protected]

🇬🇧 What we support

  • Virtual Accounts - Accept GBP via Faster Payments from 1st and approved 3rd parties.
  • Transfers - Receive GBP via Faster Payments payins from 1st and approved 3rd parties, make payouts to any recipient.
  • Liquidation Addresses. - Offramps from stablecoin or crypto to GBP via Faster Payments.

Transaction Minimums and Limits

  • Onramp minimum 2 GBP
  • Offramp minimum 3 GBP
  • No maximum
  • 1st and 3rd party payouts supported
  • 1st party payins supported, 3rd party payins supported from approved 3rd parties.

Request / Response Examples

Request
curl --request POST \
  --url https://api.bridge.xyz/v0/customers/#{request.customer_id}/external_accounts \
  --header 'Api-Key: #{api_key}' \
  --header 'Content-Type: application/json' \
  --header 'Idempotency-Key: #{request.idempotency_key}' \
  --data '
{
  "currency": "gbp",
  "account_owner_name": "First Last",
  "first_name": "First",
  "last_name": "Last",
  "account_owner_type": "individual",
  "account": {
    "sort_code": "123456",
    "account_number": "34567890"
  },
  "account_type": "gb"
}'
Response
{
  "id": "bce9dbe4-bca7-42e0-9cc1-7482069019f1",
  "customer_id": "485c2b50-949c-412b-928a-f56fce42330d",
  "created_at": "2026-01-05T23:54:57.715Z",
  "updated_at": "2026-01-05T23:54:58.201Z",
  "bank_name": "Bank of England",
  "account_name": null,
  "account_owner_name": "Freddie Mercury",
  "active": true,
  "currency": "gbp",
  "account_owner_type": "individual",
  "account_type": "gb",
  "first_name": "Freddie",
  "last_name": "Mercury",
  "business_name": null,
  "account": {
    "sort_code": "123456",
    "account_number": "34567890"
  }