Skip to content
RealDestroyer Logo

API Reference

Common HTTP patterns for license-aware APIs.

Authentication

Send your API key in the Authorization header. Rotate keys from Dashboard → API Keys if a key is exposed.

request
http
GET /v1/licenses/verify HTTP/1.1
Host: api.example.com
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

Verify a license

Example verify request body. Exact paths vary by product — consult the product documentation tab.

body
json
{
  "licenseKey": "XXXX-XXXX-XXXX",
  "productId": "prod_001",
  "instanceId": "server-01"
}