API Quests
Last updated
Last updated
Click here to introduce our bot to your server.
To get started, go to your Dashboard => Hype Engine ⇒ Custom Quests ⇒ Add Quest ⇒ Quest Type: API
If this is your first time, you will see a pop-up where you can request an API Key; otherwise, when you go to the Custom Quests tab, you should see your API key.
API Documentation: https://api.communityone.io/v1/documentation
If you are using Cursor or any AI coding cool, simply download our openAPI JSON doc and let your AI code for you:
Our python SDK is out: https://pypi.org/project/communityone/
You should be able to integrate your quests with your Discord in 3 lines.
Javascript/Typescript SDK: https://www.npmjs.com/package/communityone!
Every server will be given a unique API key in their configuration dashboard.
You must include the API key directly in the header of every request to the API like this:
If authentication fails, the server will receive a 401 Unauthorized response. Unauthorized (401) response:
The base URL for all API endpoints is api.communityone.io/v1
. This is the root endpoint for the CommunityOne API (version 1).
This is the list of available endpoints, more details about each can be found below:
/servers/{server_id}/custom-quests
- Get all api-controlled custom quests for the discord server
/servers/{server_id}/players/{discord_user_id}
- Get information about a specific player
/servers/{server_id}/custom-quests/{custom_quest_id}/complete
- Mark a custom quest as completed for a user
/servers/{server_id}/custom-quests/{custom_quest_id}/completed-members
- Get all members who completed a specific quest
Returns a list of all custom quests and their info
Header:
Authorization: YOUR_API_KEY
Example response:
Success (200)
GET /v1/servers/{server_id}/custom-quests/{custom_quest_id}/completed-members
Returns a list of all members who have completed a given custom quest
Header:
Authorization: YOUR_API_KEY
Example response:
Success (200)
Not Found (404)
GET /v1/servers/{server_id}/players/{discord_user_id}/info
Returns info about a given member
Header:
Authorization: YOUR_API_KEY
Example response:
Success (200)
Not Found (404)
POST /v1/servers/{server_id}/custom-quests/{custom_quest_id}/complete
Marks a custom quest as completed for a Discord member. If the quest is one-time-only the user will see their quest completed the next time they check /quests in discord, regardless of when this happens. If not, the user will only see their quest completed if they check /quests in discord in the same day.
Header:
Authorization: YOUR_API_KEY
Content-Type: application/json
Example request:
Example responses:
Success (200) - First completion
Success (200) - Already completed today
This second response will be returned if you attempt to complete a quest for a user that has already completed it earlier today (based on UTC time). The completed_at
field will contain the timestamp of the original completion.
Possible messages:
"Quest completion event recorded successfully."
"Quest already completed today (UTC)"
Bad Request (400)
Possible messages:
"discord_user_id must be an integer"
"Quest is no longer active"
"Quest is not active yet"
Not Found (404)
Unauthorized (401)
CommunityOne allows you to test the full quest completion workflow in your application without affecting production quests data, helping you verify quest functionality before releasing it to your community. When a quest is in testing mode:
The quest won't be visible to regular Discord server members
No code changes needed! - use the same SDK methods for testing and production quests (the API automatically routes to our internal test environment)
How to enable:
Go to your server's CommunityOne dashboard
Navigate to Hype Engine > Custom Quests
Click the Edit button on your quest
Enable testing mode
All API endpoints are subject to rate limiting:
60 requests per minute per server
Rate limits are applied separately for each endpoint
Exceeding the rate limit will result in a 429 Too Many Requests response
Join Discord for questions, comments, and a little gift