Get Completed Quests

Retrieve completed quests for users

Get Completed Quests

This endpoint allows you to retrieve completed quests for users in your organization. You can filter by specific quest ID or user ID.

Authentication

To access this endpoint, you must include an Authorization header with your API key:

Authorization: YOUR_API_KEY

Endpoint

GET /api/v1/getCompletedQuests

Query Parameters

  • questId (string, optional) - Filter results by specific quest ID
  • userId (string, optional) - Filter results by specific user ID

Response

Success Response (200 OK)

{
  "completedQuests": [
    {
      // Quest completion transaction details
    }
  ]
}

Error Responses

  • 400 Bad Request

    {
      "error": "Invalid query parameters",
      "details": {
        // Validation error details
      }
    }
    
    • When the query parameters are invalid
  • 403 Forbidden

    {
      "error": "No API Key in quest"
    }
    
    • When no API key is provided
    • When the API key is invalid
    • When the endpoint is not allowed with your current subscription plan
  • 405 Method Not Allowed

    {
      "error": "Invalid quest method"
    }
    
    • When using a method other than GET
  • 429 Too Many Requests

    {
      "error": "You have reached the quest limit per minute. Please slow down tiger."
    }
    
    • When you've exceeded your plan's rate limit
  • 500 Internal Server Error

    {
      "error": "An unexpected error occurred",
      "details": "Error message"
    }
    

Rate Limits

Rate limits vary by subscription plan:

  • Starter Plan: 10 API calls per minute
  • Grow Plan: 100 API calls per minute
  • Pro Plan: 500 API calls per minute
  • Enterprise Plan: Unlimited API calls

Notes

  • Results are filtered by your organization ID automatically
  • You can combine questId and userId filters to get more specific results
  • The endpoint returns an array of completed quest transactions