EVEDEX Challenges API

The Challenges API from EVEDEX — 10 operation(s) for challenges.

Operations 10

POST /api/challenges/sync-tickets
GET /api/challenges/summary
GET /api/challenges/streak/summary
POST /api/challenges/streak/restore
POST /api/challenges/restart
POST /api/challenges/manual-claim
POST /api/challenges/{userId}/increase
POST /api/challenges/{challengeId}/claim
GET /api/challenges/leaderboard/me Return leaderboard me
GET /api/challenges/{challengeTitle}/leaderboard Return leaderboard

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/evedex-challenges-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

evedex-challenges-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: EVEDEX - Game Challenges API
  version: 1.0.0
servers:
- url: https://game-api.evedex.com
tags:
- name: Challenges
paths:
  /api/challenges/sync-tickets:
    post:
      tags:
      - Challenges
      security:
      - InternalKey: []
      responses:
        '200':
          description: 200 OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmptyResponse'
  /api/challenges/summary:
    get:
      tags:
      - Challenges
      security:
      - AccessToken: []
      parameters:
      - in: query
        name: showAll
        schema:
          type: string
          enum:
          - 'yes'
          - 'no'
      responses:
        '200':
          description: 200 OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ChallengesSummaryResponse'
  /api/challenges/streak/summary:
    get:
      tags:
      - Challenges
      security:
      - AccessToken: []
      responses:
        '200':
          description: 200 OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RestoreStreakBalanceResponse'
  /api/challenges/streak/restore:
    post:
      tags:
      - Challenges
      security:
      - AccessToken: []
      responses:
        '200':
          description: 200 OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmptyResponse'
  /api/challenges/restart:
    post:
      tags:
      - Challenges
      security:
      - InternalKey: []
      responses:
        '200':
          description: 200 OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmptyResponse'
  /api/challenges/manual-claim:
    post:
      tags:
      - Challenges
      security:
      - InternalKey: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ManualChallengeClaimBody'
      responses:
        '200':
          description: 200 OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ManualChallengeClaimResponse'
  /api/challenges/{userId}/increase:
    post:
      tags:
      - Challenges
      security:
      - InternalKey: []
      parameters:
      - in: path
        name: userId
        schema:
          type: string
          format: uuid
        required: true
      responses:
        '200':
          description: 200 OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmptyResponse'
  /api/challenges/{challengeId}/claim:
    post:
      tags:
      - Challenges
      security:
      - AccessToken: []
      parameters:
      - in: path
        name: challengeId
        schema:
          type: string
          format: uuid
        required: true
      responses:
        '200':
          description: 200 OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmptyResponse'
  /api/challenges/leaderboard/me:
    get:
      tags:
      - Challenges
      summary: Return leaderboard me
      security:
      - AccessToken: []
      responses:
        '200':
          description: 200 OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ChallengeCompetitionLeaderboardMeResponse'
  /api/challenges/{challengeTitle}/leaderboard:
    get:
      tags:
      - Challenges
      summary: Return leaderboard
      security: []
      parameters:
      - in: path
        name: challengeTitle
        schema:
          type: string
          enum:
          - sprint
          - middleRace
          - marathon
        required: true
      - in: query
        name: limit
        schema:
          $ref: '#/components/schemas/PageLimitParam'
      - in: query
        name: offset
        schema:
          $ref: '#/components/schemas/PageOffsetParam'
      responses:
        '200':
          description: 200 OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ChallengeCompetitionLeaderboardResponse'
components:
  schemas:
    EmptyResponse:
      type: object
    ManualChallengeClaimBody:
      type: object
      properties:
        wallet:
          type: string
          description: User wallet address
        authId:
          type: string
          format: uuid
          description: User Auth Id
        userChallengeId:
          type: string
          format: uuid
          description: User Challenge Id (if known)
        challengeTitle:
          type: string
          enum:
          - sprint
          - middleRace
          - marathon
          description: Challenge title (sprint, middleRace, marathon)
        month:
          type: string
          description: Month in format YYYY-MM (e.g. 2025-01)
    ChallengeCompetitionLeaderboardResponse:
      type: object
      properties:
        list:
          type: array
          items:
            type: object
            properties:
              user:
                type: string
                format: uuid
              tradingVolume:
                type: number
              tickets:
                type: number
              total:
                type: number
              avatar:
                type: string
              smartAccountAddress:
                type: string
            required:
            - user
            - tradingVolume
            - tickets
            - total
            - avatar
            - smartAccountAddress
        count:
          type: number
        next:
          type: string
        startAt:
          type:
          - string
          - 'null'
        finishAt:
          type:
          - string
          - 'null'
      required:
      - list
      - count
      - startAt
      - finishAt
    ChallengesSummaryResponse:
      type: array
      items:
        type: object
        properties:
          id:
            type: string
            format: uuid
          title:
            type: string
          date:
            type: string
          progress:
            type: integer
          goal:
            type: integer
          userChallengeId:
            type:
            - string
            - 'null'
            format: uuid
            default: null
          isClaimed:
            type: boolean
          isAvailable:
            type: boolean
        required:
        - id
        - title
        - date
        - progress
        - goal
        - userChallengeId
        - isClaimed
        - isAvailable
    RestoreStreakBalanceResponse:
      type: object
      properties:
        used:
          type: integer
        total:
          type: integer
        isAvailable:
          type: boolean
      required:
      - used
      - total
      - isAvailable
    ChallengeCompetitionLeaderboardMeResponse:
      type: object
      properties:
        tradingVolume:
          type: number
        targetVolume:
          type: number
        tickets:
          type: number
        total:
          type: number
      required:
      - tradingVolume
      - targetVolume
      - tickets
      - total
    PageOffsetParam:
      type: string
      default: '0'
    PageLimitParam:
      type: string
      default: '50'
    ManualChallengeClaimResponse:
      type: object
      properties:
        success:
          type: boolean
        userId:
          type: string
          format: uuid
        userChallengeId:
          type: string
          format: uuid
        challengeTitle:
          type: string
        xpAwarded:
          type: number
        newExperience:
          type: string
      required:
      - success
      - userId
      - userChallengeId
      - challengeTitle
      - xpAwarded
      - newExperience
  securitySchemes:
    AccessToken:
      type: http
      scheme: bearer
    InternalKey:
      type: http
      scheme: bearer