GET

/api/v1/exchanges/:id

Permission: EXCHANGES_READSecurity: SIGNED

Retrieves configuration and status information for a specific connected exchange account using its unique UUID ID.

Pro Tip: Use /api/v1/exchanges to retrieve the complete list of all active connected exchange accounts.

Path Parameters

idUUID string required

Unique Quentrade UUID of the connected exchange account (e.g. '7fa84b80-77a8-4e89-a292-123456789abc').

Example Request

GETGET /api/v1/exchanges/7fa84b80-77a8-4e89-a292-123456789abc

Response Parameters

Account Entity Structure

If successful, the response returns the complete Exchange Connection model containing exchange code, label, connection type, trading permissions, and verification status.

View Account Entity Spec

Example Response

account_info_200.json
200 OK
{
  "id": "7fa84b80-77a8-4e89-a292-123456789abc",
  "exchange": "binance",
  "label": "My Main Binance Account",
  "connection_type": "spot",
  "can_trade": true,
  "can_withdraw": false,
  "is_active": true,
  "is_testnet": false,
  "last_verified": "2026-08-20T23:25:00.000Z",
  "last_error": null,
  "created_at": "2026-08-20T23:25:00.000Z"
}