Skip to main content

Overview

Welcome to the RocketAPI Reference. If you're new to RocketAPI, create an account and follow this guide to get started.

Base URL

The base URL for all API requests is https://v1.rocketapi.io/.

For Enterprise accounts with their own endpoint, please contact your account manager for more information.

Authentication

RocketAPI uses API keys to authenticate requests. You can find your API key in dashboard.

Usage

You can retrieve usage information by using the /usage method.

curl --request GET \
--url https://v1.rocketapi.io/usage \
--header 'Content-Type: application/json' \
--header 'Authorization: Token your-api-key'

The result will be in this format:

Loading...

Errors

When you make an API call you may receive an error message in response. Either there is something wrong with your request or something went wrong on our end.

Example error

500 Internal Server Error
{
"status": "error",
"message": "Internal Server Error"
}