API reference
GraphQL + REST. Pick the one you like.
Both APIs are first-class — same auth, same rate limits, same SLAs. GraphQL is recommended for new builds; REST is great for shell + webhook integrations.
Auth
Personal access tokens (PATs) via Settings → API. OAuth 2.0 for third-party apps via /oauth/authorize.
curl https://api.relyvflow.demo/v1/workspaces \
-H "Authorization: Bearer pat_xxx"Rate limits
5,000 req/min per workspace, soft. We return 429 with Retry-After. Enterprise plans get 25,000 req/min.
Endpoints
/graphqlSingle endpoint, full schema introspection. Recommended for new integrations.
/v1/workspacesList all workspaces accessible to the API key.
/v1/workspaces/{w}/issuesPaginated list of issues. Filter by state, label, assignee, cycle, project.
/v1/workspaces/{w}/issuesCreate issue. Idempotent via Idempotency-Key header.
/v1/issues/{id}Partial update — only fields you send are mutated.
/v1/webhooksRegister a webhook. We send signed POSTs on every issue + project event.
/v1/audit-logAudit log stream. Cursor-paginated, retained 365 days.