Authentication

How to authenticate with the API

πŸ†“

Free Plan

No authentication required. Perfect for prototypes and personal projects.

Limit: 30 requests/daily
⭐

Pro Plan (Coming Soon)

Requires API Key in Authorization header.

Limit: TBD requests/day

Example with authentication (Pro)

fetch("https://assets.qbacode.com/api/v1/generate-asset", {
  method: "POST",
  headers: {
    "Content-Type": "application/json",
    "Authorization": "Bearer YOUR_API_KEY"
  },
  body: JSON.stringify({...})
})