Getting started

Create an account, get your API token, and make your first Raid AI API call.

Make your first detection call in a few minutes.

Create an account. Sign up at the Raid AI dashboard and sign in.

Create an API key. In the dashboard, open API Keys, click Create Key, choose the detection scopes it may call (image, audio, fact-check) and an optional expiry, then copy the token — it's shown only once. Treat it like a password — see Authentication.

Make your first call. Send an image to the detection endpoint with your token in the Authorization header:

curl -X POST "https://api.raidxai.com/api/app/image-forensics/process" \
  -H "Authorization: Bearer <your-token>" \
  -F "imageFiles=@/path/to/photo.jpg"

Read the response. You'll get a verdict, a confidence score, and per-image details. See A complete example for an annotated walkthrough.

Prefer to experiment first? Open the API reference, pick an endpoint, paste your token, and run a real request straight from the browser.