Where can i find information on API integration response envelopes?

Discover insights on key topics that enhance understanding and offer practical knowledge for everyday applications.

All responses are wrapped in an envelope that typically contains:

  • data: The main payload (object or array).
  • meta: Additional metadata (e.g., total count for paginated responses).
  • links: Navigation links (e.g., next, previous pages).

For example, a list endpoint response might look like:

{ "data": [ { ... }, { ... } ], "meta": { "totalCount": 25 }, "links": { "next": "https://api.centtrip.com/eu/v1/...", "prev": "..." } } 


  1. Environments & Base URLs
  2. Authentication
  3. Endpoints:
    1. Corporate Endpoints
    2. Entity Endpoints
    3. Account Endpoints
    4. Card Endpoints
  4. Response Envelopes
  5. Error Handling
  6. Best Practice & Tips
  7. Example Workflow
Was this article helpful?