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 monitor your plan usage through the API response headers:

  • x-ratelimit-requests-remaining
  • x-ratelimit-requests-limit
  • x-ratelimit-updated-at

These details are refreshed every minute.

You can also 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...

Rate Limiting

Our default rate limit is 32 requests per second. If you need a higher rate limit, please contact us.

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. We never charge your balance for failed or erroneous requests.

Example error

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