API Overview
Query and mutate Done Bear resources over the GraphQL API.
The Done Bear API uses GraphQL for all queries and mutations. Send authenticated requests to the GraphQL endpoint to manage workspaces, tasks, projects, teams, labels, and API keys.
All API requests go to:
curl https://api.donebear.com/graphql \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json" \
--data '{"query":"query { viewer { id email } }"}'Send bearer credentials in the Authorization header. The API accepts:
db_Example:
curl https://api.donebear.com/graphql \
-H "Authorization: Bearer <token-or-api-key>" \
-H "Content-Type: application/json" \
--data '{"query":"query { myWorkspaces { id name } }"}'