Skip to main content
GET
/
api
/
v0
/
bringin-link
/
{id}
Get connection
curl --request GET \
  --url https://dev.bringin.xyz/api/v0/bringin-link/{id} \
  --header 'api-key: <api-key>'
{
  "bringinLink": {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "name": "My BTC savings",
    "type": "FIAT_TO_CRYPTO",
    "subtype": "ONCHAIN",
    "status": "PENDING",
    "createdAt": "2025-01-15T10:30:00.000Z",
    "updatedAt": "2025-01-15T10:30:05.000Z"
  },
  "standingOrder": {
    "id": "pending_abc123",
    "status": "PENDING_CONFIRMATION",
    "direction": "FIAT_TO_CRYPTO",
    "sourceCurrency": "EUR",
    "destinationCurrency": "BTC",
    "percentFeeBps": "100",
    "challengeId": "abc123",
    "challengeExpiresAt": "2025-01-15T11:00:00.000Z",
    "createdAt": "2025-01-15T10:30:05.000Z"
  },
  "depositIban": "LT61 3250 0467 2289 5172"
}
Get a specific connection with its standing order details, deposit info, and OTP challenge. Requires a per-user api-key.
id
string
required
The BringinLink ID
{
  "bringinLink": {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "name": "My BTC savings",
    "type": "FIAT_TO_CRYPTO",
    "subtype": "ONCHAIN",
    "status": "PENDING",
    "createdAt": "2025-01-15T10:30:00.000Z",
    "updatedAt": "2025-01-15T10:30:05.000Z"
  },
  "standingOrder": {
    "id": "pending_abc123",
    "status": "PENDING_CONFIRMATION",
    "direction": "FIAT_TO_CRYPTO",
    "sourceCurrency": "EUR",
    "destinationCurrency": "BTC",
    "percentFeeBps": "100",
    "challengeId": "abc123",
    "challengeExpiresAt": "2025-01-15T11:00:00.000Z",
    "createdAt": "2025-01-15T10:30:05.000Z"
  },
  "depositIban": "LT61 3250 0467 2289 5172"
}
FieldDescription
standingOrdernull during INITIATING or FAILED status
challengeIdOnly present when PENDING_CONFIRMATION — use to confirm OTP
depositIbanPresent for buy connections (FIAT_TO_CRYPTO)
depositAddressPresent for sell connections (CRYPTO_TO_FIAT + ONCHAIN)
lnAddressPresent for sell connections (CRYPTO_TO_FIAT + LN)