API Reference

Every endpoint,
in two languages.

Generated reference for every Manager and APIops endpoint — bilingual TR + EN. The same controllers that back the Manager UI back this reference.

Authentication

Bearer tokens, every endpoint.

Issue a JWT through Identity Manager. Send it as a bearer token. Permissions enforced through the same three-tier model used by the UI — System, Project, Team.

# Issue a token
$ curl -X POST https://manager.example.com/v1/identity/jwt \
    -H 'Content-Type: application/json' \
    -d '{"clientId":"<id>","clientSecret":"<secret>"}'

# Use it
$ curl https://manager.example.com/v1/proxies \
    -H "Authorization: Bearer $TOKEN"

Endpoint groups

Browse the surface.

  • Identity

    Users, roles, credentials, OAuth2 / OIDC flows, JWT validation, ACLs, and rate-limit control lists.

    • POST /v1/identity/credentials
    • GET /v1/identity/permissions
    • POST /v1/identity/jwt/validate
  • API Proxies

    Create, version, deploy, and undeploy proxies. Manage endpoints, client routes, upstream targets, and policies.

    • POST /v1/proxies
    • POST /v1/proxies/{name}/deploy
    • GET /v1/proxies/{name}/endpoints
  • AI Gateway

    Govern LLM traffic — providers, routes, semantic caching, prompt firewall policies, and quota windows.

    • POST /v1/ai/providers
    • POST /v1/ai/routes
    • POST /v1/ai/policies/prompt-firewall
  • APIops

    Programmatic lifecycle — apply manifests, manage environments, and run idempotent rollouts.

    • POST /v1/apiops/apply
    • GET /v1/apiops/environments
    • POST /v1/apiops/rollback
  • Analytics

    Query the Elasticsearch-backed traffic store, run reports, manage dashboards, and configure alerts.

    • POST /v1/analytics/query
    • GET /v1/analytics/dashboards
    • POST /v1/analytics/alerts
  • Connections

    Manage encrypted connection objects — databases, message queues, FTP, SMTP, LDAP, and more.

    • POST /v1/connections
    • POST /v1/connections/{name}/test
    • GET /v1/connections
  • Connectors & Task Flows

    Configure 15+ connectors and orchestrate cron-driven or HTTP-triggered task flows.

    • POST /v1/taskflows
    • POST /v1/taskflows/{name}/run
    • GET /v1/taskflows/{name}/history
  • Monitoring

    Uptime monitors, anomaly rules, certificate watchdogs, and alarm channels.

    • POST /v1/monitoring/uptime
    • POST /v1/monitoring/anomaly
    • GET /v1/monitoring/alarms
  • Portal

    Manage API products, applications, subscriptions, and theming for the developer portal.

    • POST /v1/portal/products
    • POST /v1/portal/applications
    • POST /v1/portal/subscriptions

Wire it up

Drive the Manager from CI.

See APIops as it would run in your pipeline — manifests, applies, rollbacks, and the audit it produces.