repryntt

documentation · API reference

API reference

Base URL: https://api.repryntt.com. All requests authenticated with Bearer token.

Authentication

Pass your REPRYNTT_API_KEY as a Bearer token:

curl https://api.repryntt.com/v1/me \
  -H "Authorization: Bearer $REPRYNTT_API_KEY"

Endpoints

MethodPathDescription
POST/v1/agents/runRun a single agent job synchronously.
GET/v1/agentsList all 220 agent roles available (158 marketplace + 62 frontier-science).
POST/v1/forge/proposePropose a new Coding Forge project.
GET/v1/forge/status/{project_id}Poll the status of a Forge build.
POST/v1/video/{fn}Call any of the 13 video pipeline functions.
POST/v1/coherence/criticSubmit an output for frontier-model critic review.
POST/v1/coherence/judge_architectureGet a structural quality verdict on a project.
POST/v1/coherence/evalRun a 5-axis coherence evaluation on agent output.
GET/v1/meReturn current user, tier, and usage stats.

Response format

All responses are JSON. Common shape:

{
  "job_id": "job_abc123",
  "agent": "Code Reviewer",
  "status": "completed",
  "output": "...",
  "model_used": "gpt-4o",
  "tokens": { "prompt": 412, "completion": 89 }
}

Error codes

  • 401 — invalid or missing API key
  • 402 — subscription inactive or required tier not met
  • 403 — endpoint forbidden for your account
  • 429 — rate limit exceeded
  • 503 — upstream LLM provider unavailable; retry