Skip to main content
GET
/
applications
List all applications
curl --request GET \
  --url https://api.conduit.financial/v2/applications \
  --header 'x-api-key: <api-key>'
{
  "data": [
    {
      "id": "<string>",
      "status": "pending",
      "createdAt": "2026-01-15T09:30:00.000Z",
      "updatedAt": "2026-01-15T09:30:00.000Z",
      "type": "CUSTOMER_ONBOARDING",
      "clientReferenceId": "ext-12345",
      "submittedAt": "2026-01-15T09:30:00.000Z",
      "failureMessage": "<string>",
      "customerId": "<string>"
    }
  ],
  "meta": {
    "mode": "cursor",
    "nextCursor": "eyJpZCI6ImN1c18yeFBxTjhSIn0",
    "previousCursor": null,
    "total": 42
  }
}

Authorizations

x-api-key
string
header
required

Query Parameters

cursor
string

Opaque cursor from a previous response to fetch the next page

limit
number
default:20

Maximum number of results to return (1-100)

Required range: 1 <= x <= 100
direction
enum<string>

Pagination direction relative to the cursor

Available options:
forward,
backward

Free-text search across application fields.

status
enum<string>[]

Filter by one or more application statuses.

Available options:
pending,
processing,
approved,
rejected,
cancelled
type
enum<string>[]

Filter by one or more public application types.

Available options:
ORGANIZATION_ONBOARDING,
CUSTOMER_ONBOARDING,
VIRTUAL_ACCOUNT,
CRYPTO_WALLET,
WALLET_CUSTODY_CONVERSION,
SANCTIONS_REVIEW,
CUSTOMER_UPDATE
customerId
string

Filter to applications belonging to a single customer.

sortBy
enum<string>
Available options:
createdAt,
updatedAt,
status,
type,
submittedAt
sortOrder
enum<string>
Available options:
asc,
desc

Response

data
object[]
required
meta
object
required