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
| Method | Path | Description |
|---|---|---|
| POST | /v1/agents/run | Run a single agent job synchronously. |
| GET | /v1/agents | List all 220 agent roles available (158 marketplace + 62 frontier-science). |
| POST | /v1/forge/propose | Propose 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/critic | Submit an output for frontier-model critic review. |
| POST | /v1/coherence/judge_architecture | Get a structural quality verdict on a project. |
| POST | /v1/coherence/eval | Run a 5-axis coherence evaluation on agent output. |
| GET | /v1/me | Return 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 key402— subscription inactive or required tier not met403— endpoint forbidden for your account429— rate limit exceeded503— upstream LLM provider unavailable; retry