Getting Started

All RooLink API endpoints require authentication via API key.

Include your API key in the x-api-key header for all requests.

Getting Your API Key

1

Sign up at roolink.io

2

Navigate to your dashboard

3

Copy your API key

Using Your API Key

Include your API key in the x-api-key header for all requests:

Example (curl)
curl -X POST https://www.roolink.io/api/v1/sensor \
  -H "Content-Type: application/json" \
  -H "x-api-key: your-api-key" \
  -d '{ ... }'

Base URLs

Service
Base URL

Akamai Web

https://www.roolink.io/api/v1

Akamai BMP

https://akamai-bmp.onrender.com/api/v1

Error Responses

Status
Meaning

400

Invalid request body

401

Invalid or missing API key

429

Rate limit exceeded

500

Internal server error

Last updated