| Item | Value |
|---|---|
| Production base URL | https://api.gnosisramp.io/v1 |
| Sandbox base URL | https://sandbox.api.gnosisramp.io/v1 |
| Content type | application/json |
| Auth schemes | HTTP Basic (project client credentials), Bearer (GnosisRamp JWT) |
Calling the APIs
- Token exchange and other project-scoped endpoints expect HTTP Basic headers:
Authorization: Basic base64(clientId:clientSecret). - Customer-scoped endpoints (
/customers/{id}/external-accounts,/intent,/intent/:id/transaction, etc.) expectAuthorization: Bearer <GNOSISRAMP_JWT>obtained from the token-exchange flow. - All request bodies should be JSON; numbers such as transfer amounts must be strings (see the Money Movement section for precision rules).
Working with the spec
- Download the spec: openapi.yaml
- Import into Postman, Insomnia, or your favourite client to bootstrap requests.
- Use the schema definitions for strongly typed clients; they include enums for rails, currencies, and webhook events.
- The Mintlify playground supports live requests once you provide credentials in the “Headers” panel.