Authentication

Inokufu API Cloud uses API keys to allow access to our APIs.

You can access this API in two ways:

  • Rapid API: this is recommended for small to medium usage. You'll need to create a Rapid API account here, then to subscribe to one of our plan here. Rapid API will then provide you with your Developer API key

  • Direct customer: this is reserved for very high usage and custom needs. If you want to know more about our enterprise plans, please feel free to contact our Inokufu sales team.

Rapid API

API key in header

Inokufu APIs expects for the API key to be included in API requests to the server in a header that looks like the following:

"x-rapidapi-key": "SAY-FRIEND-AND-ENTER"

Make sure to replace SAY-FRIEND-AND-ENTER with your own Developer API key.

Code examples

See here for Rapid API codes example.

Direct Customer

API key in header

Inokufu APIs expects for the API key to be included in API requests to the server in a header that looks like the following:

"x-api-key": "SAY-FRIEND-AND-ENTER"

Make sure to replace SAY-FRIEND-AND-ENTER with your own Developer API key.

Code examples

See below for Direct customer access:

# With shell, you can just pass the correct header with each request
curl "api_endpoint_here"
  -H "x-api-key: SAY-FRIEND-AND-ENTER"

Last updated