Get Quests
Get available quests for a user
Get Quests
This endpoint allows you to retrieve all available quests for a user, including their completion status and rewards.
Authentication
To access this endpoint, you must include an Authorization
header with your API key:
Authorization: YOUR_API_KEY
Endpoint
GET /api/v1/getQuests
Query Parameters
questId
(string, optional) - Filter results by specific quest IDstatus
(enum, optional) - Filter results by quest status. Valid values: 'draft', 'published', 'archived'
Response
Success Response (200 OK)
{
"customerId": "string",
"quests": [
{
"id": "string",
"title": "string",
"description": "string",
"type": "standard" | "daily",
"rewardAmount": number,
"rewardId": "string",
"isCompleted": boolean,
"completedAt": "string" | null,
"expiresAt": "string" | null,
"createdAt": "string",
"updatedAt": "string"
}
]
}
Error Responses
-
400 Bad Request
{ "error": "Missing required parameters", "details": { // Validation error details } }
- When required query parameters are missing
- When query parameters are invalid
-
403 Forbidden
{ "error": "No API Key in request" }
- When no API key is provided
- When the API key is invalid
- When the endpoint is not allowed with your current subscription plan
-
429 Too Many Requests
{ "error": "You have reached the quest retrieval limit" }
- When you've reached your plan's user limit
- When you've reached your plan's transaction limit
-
500 Internal Server Error
{ "error": "An unexpected error occurred", "details": "Error message" }
Rate Limits
Rate limits vary by subscription plan:
- Grow Plan: 100 API calls per minute
- Pro Plan: 500 API calls per minute
- Enterprise Plan: Unlimited API calls
Notes
- The endpoint will return an empty quests array for new users
- Daily quests are automatically reset at midnight UTC
- The response includes both active and completed quests
- Each quest includes its reward information and completion status
- The expiresAt field is only present for time-limited quests