Getting Started — Overview
The Cartevo API is designed to be simple, predictable, and compliant with web standards. This guide will help you make your first API call in minutes.API Basics
- Architecture: RESTful
- Data Format: JSON
- Encoding: UTF-8
- Base URL:
https://api.cartevo.co/v1/
Authentication
All API requests require authentication using a Bearer Token in the HTTPAuthorization header.
Getting your API Key
- Log in to your Cartevo Dashboard
- Navigate to Settings → API Keys
- Generate a new API key for your environment (Test/Production)
NOTE: The API key is only valid for one hour. After this time you will have to re-authenticate
Making your first request
Here’s a simple example to create a customer:HTTP Status Codes
The API returns standard HTTP status codes to indicate the success or failure of requests:Success Codes
200 OK- Request succeeded201 Created- Resource created successfully
Client Error Codes
400 Bad Request- Invalid request parameters401 Unauthorized- Invalid or missing API key404 Not Found- Resource not found
Server Error Codes
500 Internal Server Error- Server error