Skip to main content

Getting Started — Overview

The Cartevo API is designed to be simple, predictable, and standards-compliant. This guide gets you to your first successful call in under five minutes. For the conventions that apply across every endpoint (response envelope, error shape, money/date formats, pagination, idempotency, rate limits), see API Conventions.

API basics

  • Architecture: RESTful, JSON-based
  • Encoding: UTF-8
  • Base URL: https://api.cartevo.co/api/v1
  • Authentication: Bearer token in the Authorization header (see Authentication)

Making your first request

Step 1 — exchange your client_id and client_key for a short-lived access token:
Response:
Step 2 — use the token to call any other endpoint, e.g. listing your wallets:
Tokens expire after 1 hour. There is no refresh endpoint — call POST /auth/token again when needed.

HTTP status codes (summary)

For full retry guidance and the standard error envelope, see API Conventions → Errors.

Next steps