Details — REST API

REST API

api.agenticdeveloperhub.dev

Every feature in the hub is configurable and queryable over HTTPS. Auth with an application token, get on with your day.

Dognamr.com hits api.agenticdeveloperhub.dev with the Dognamr application token. List Casey's personas, fetch Bob, write to the user data store, ping the status group — same shape for everything.

$ curl https://api.agenticdeveloperhub.dev/v1/personas/bob \
    -H "Authorization: Bearer adh_app_dognamr_prod_..."

{
  "id": "bob",
  "owner": "@casey",
  "version": 12,
  "model": "claude-opus-4-7",
  "data_store": "/personas/bob/dognamr",
  "updated_at": "2026-05-17T14:22:08Z"
}
  • Bearer tokens, scoped to an application within a project.
  • Idempotency keys, paginated reads, structured errors.
  • OpenAPI spec at /openapi.json; Postman collection on the side.
  ◆ you are here:  REST API
        │
        ├── 🔑 Applications
        ├── 📦 Projects
        ├── 🧩 MCP Server
REST API — Agentic Developer Hub