Documentation
GraphQL API
SuperGraph API
Query exactly what you need. Join data across 64 entities in a single request using our unified GraphQL schema.
Examples
Get Customer
Retrieve a customer by ID with their accounts and cards
query.graphql
graphql
1query GetCustomer($id: ID!) {2 customer(id: $id) {3 id4 nationalId5 fullName6 email7 phone8 kycStatus9 createdAt10 accounts {11 edges {12 node {13 id14 iban15 type16 balance {17 amount18 currency19 }20 }21 }22 }23 cards {24 edges {25 node {26 id27 last428 brand29 status30 }31 }32 }33 }34}