Skip to main content
GET
/
api
/
v0
/
bringin-link
List connections
curl --request GET \
  --url https://dev.bringin.xyz/api/v0/bringin-link \
  --header 'api-key: <api-key>'
[
  {
    "bringinLink": {
      "id": "a8558b90-6a87-4c81-a767-9725d5a23a45",
      "name": "Cake wallet",
      "type": "FIAT_TO_CRYPTO",
      "subtype": "ONCHAIN",
      "status": "ACTIVE",
      "createdAt": "2026-03-24T08:31:53.143Z",
      "updatedAt": "2026-03-24T08:34:08.077Z"
    },
    "standingOrder": {
      "id": "a5b03095-f4ad-4a10-8970-4c63de5a49a9",
      "status": "ACTIVE",
      "direction": "FIAT_TO_CRYPTO",
      "sourceCurrency": "EUR",
      "destinationCurrency": "USDC",
      "percentFeeBps": "1",
      "createdAt": "2026-03-24T08:33:18.366Z",
      "updatedAt": "2026-03-24T08:34:08.070Z"
    },
    "depositIban": "MT77CFTE28004000000000005960390",
    "destinationAddress": "0x5919d3A265d85732dB16A1EE7eCe8795719fEED4"
  },
  {
    "bringinLink": {
      "id": "b78f5b8d-11f5-492e-9844-42dfdc3c9528",
      "name": "Wise",
      "type": "CRYPTO_TO_FIAT",
      "subtype": "LN",
      "status": "ACTIVE",
      "createdAt": "2026-03-09T10:53:27.106Z",
      "updatedAt": "2026-03-09T10:53:57.242Z"
    },
    "standingOrder": {
      "id": "e77d7fc8-7c3f-4f05-8020-916add8c1aa8",
      "status": "ACTIVE",
      "direction": "CRYPTO_TO_FIAT",
      "sourceCurrency": "BTC",
      "destinationCurrency": "EUR",
      "percentFeeBps": "0.01",
      "createdAt": "2026-03-09T10:53:34.156Z",
      "updatedAt": "2026-03-09T10:53:57.234Z"
    },
    "lnAddress": "alice_wise@bringin.xyz",
    "destinationIban": "BE65967689052596"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.bringin.app/llms.txt

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

List all connections for the authenticated user within your application. Only returns connections with status INITIATING, PENDING, or ACTIVE. Terminal statuses (FAILED, EXPIRED, INACTIVE) are excluded. Requires a per-user api-key.
Always call this endpoint before creating a new connection to avoid 409 duplicate errors.
[
  {
    "bringinLink": {
      "id": "a8558b90-6a87-4c81-a767-9725d5a23a45",
      "name": "Cake wallet",
      "type": "FIAT_TO_CRYPTO",
      "subtype": "ONCHAIN",
      "status": "ACTIVE",
      "createdAt": "2026-03-24T08:31:53.143Z",
      "updatedAt": "2026-03-24T08:34:08.077Z"
    },
    "standingOrder": {
      "id": "a5b03095-f4ad-4a10-8970-4c63de5a49a9",
      "status": "ACTIVE",
      "direction": "FIAT_TO_CRYPTO",
      "sourceCurrency": "EUR",
      "destinationCurrency": "USDC",
      "percentFeeBps": "1",
      "createdAt": "2026-03-24T08:33:18.366Z",
      "updatedAt": "2026-03-24T08:34:08.070Z"
    },
    "depositIban": "MT77CFTE28004000000000005960390",
    "destinationAddress": "0x5919d3A265d85732dB16A1EE7eCe8795719fEED4"
  },
  {
    "bringinLink": {
      "id": "b78f5b8d-11f5-492e-9844-42dfdc3c9528",
      "name": "Wise",
      "type": "CRYPTO_TO_FIAT",
      "subtype": "LN",
      "status": "ACTIVE",
      "createdAt": "2026-03-09T10:53:27.106Z",
      "updatedAt": "2026-03-09T10:53:57.242Z"
    },
    "standingOrder": {
      "id": "e77d7fc8-7c3f-4f05-8020-916add8c1aa8",
      "status": "ACTIVE",
      "direction": "CRYPTO_TO_FIAT",
      "sourceCurrency": "BTC",
      "destinationCurrency": "EUR",
      "percentFeeBps": "0.01",
      "createdAt": "2026-03-09T10:53:34.156Z",
      "updatedAt": "2026-03-09T10:53:57.234Z"
    },
    "lnAddress": "alice_wise@bringin.xyz",
    "destinationIban": "BE65967689052596"
  }
]
Results are sorted by createdAt descending (newest first). The standingOrder field is null for INITIATING connections that haven’t reached standing order creation yet.

Connection statuses

StatusTerminal?Meaning
INITIATINGNoBeing created in the background
PENDINGNoAwaiting SMS OTP confirmation
ACTIVENoConfirmed — auto-conversions enabled
FAILEDYesCreation failed (not returned in list)
EXPIREDYesOTP not confirmed within 30 minutes (not returned in list)
INACTIVEYesCancelled by user (not returned in list)

Use this endpoint to

  • Check for existing connections before creating a new one
  • Display the user’s active connections
  • Find PENDING connections that need OTP confirmation