v1

latestOpenAPI 3.1.02026-07-263644911022.4 KB
Discovery

List aggregator connections

Returns a cursor-paginated list of the tenant's Open-Finance data-aggregator (Pluggy/Belvo) connections, ordered by config name. The list is secret-free by construction: no credential material (clientId/secret/ciphertext) is ever returned.

get/v1/discovery/aggregator-connections

Query parameters

limitinteger

Maximum number of records to return

Maximum number of records to return

cursorstring

Cursor for pagination (opaque)

Cursor for pagination (opaque)

Response

OK

hasMoreboolean required
limitinteger required
nextCursorstring
prevCursorstring

Example response

{
  "hasMore": true,
  "items": [
    {
      "accountRef": "a1b2c3d4-5678-90ab-cdef-1234567890ab",
      "baseUrl": "https://api.pluggy.ai",
      "configName": "pluggy-main",
      "id": "a1b2c3d4-5678-90ab-cdef-1234567890ab",
      "vendor": "pluggy"
    }
  ],
  "limit": 20,
  "nextCursor": "eyJpZCI6IjEyMyJ9",
  "prevCursor": "eyJpZCI6IjEyMiJ9"
}