Skip to main content

Authentication

All API requests require authentication via an API key passed in the Authorization header.

HeaderValueRequired
Authorizationyour_api_keyYes
Content-Typeapplication/jsonYes

Where to get your API key

You can generate your API key from your account dashboard.

  • Log in to your Apper account

  • Click your Profile icon (top-right)

  • Select API Keys img
  • Click “+ Create API Key.” img
  • Add a Description so you can remember what it’s used for (example: Integrately connection)

  • Click Create API Key img
  • Copy the API key (you’ll use it in Integrately) img

Test Authentication

Verify your API key works:

GET
https://api.apper.io/v1/auth/me

Curl :

curl --location 'https://api.apper.io/v1/auth/me'
--header 'Authorization: {your_api_key}'
--header 'Content-Type: application/json'

Response

If you get this response, you're authenticated successfully!

{
"name": "John Doe",
"emailAddress": "[email protected]"
}