TesterArmyTesterArmy

Overview

The TesterArmy API lets you run AI-powered QA tests programmatically. RESTful, JSON responses, standard HTTP status codes.

Base URL

https://tester.army/api/v1

Authentication

All requests require a Bearer token. API keys use the sk_ prefix.

Authorization: Bearer sk_xxxxxxxxxxxx_xxxxxxxxxxxxxxxx

Get your key from the TesterArmy dashboard under Team Settings → API Keys. Keep it secret - don't expose it in client-side code or public repositories.

Error format

Errors return JSON with two fields:

FieldTypeDescription
errorstringError code
messagestringHuman-readable detail

Status codes

StatusErrorDescription
200-Success
202-Accepted (async operation started)
400ValidationErrorInvalid request body
401UnauthorizedMissing or invalid API key
429RateLimitedToo many requests - back off and retry
500InternalErrorServer error - try again later

Example error response

{
  "error": "ValidationError",
  "message": "prompt: Required"
}

On this page