EVEDEX Skill API

The Skill API from EVEDEX — 6 operation(s) for skill.

Operations 6

GET /api/skill/list
GET /api/skill
POST /api/skill/select
GET /api/skill/public
POST /api/skill/flush
POST /api/skill/claim

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-skill-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-skill-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: EVEDEX - Game Skill API
  version: 1.0.0
servers:
- url: https://game-api.evedex.com
tags:
- name: Skill
paths:
  /api/skill/list:
    get:
      tags:
      - Skill
      security:
      - AccessToken: []
      responses:
        '200':
          description: 200 OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  list:
                    type: array
                    items:
                      $ref: '#/components/schemas/UserSkillTree'
                  count:
                    type: number
                  next:
                    type: string
                required:
                - list
                - count
  /api/skill:
    get:
      tags:
      - Skill
      security:
      - AccessToken: []
      responses:
        '200':
          description: 200 OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserSkillTree'
  /api/skill/select:
    post:
      tags:
      - Skill
      security:
      - AccessToken: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SelectSkillBody'
      responses:
        '200':
          description: 200 OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SelectSkillResponse'
  /api/skill/public:
    get:
      tags:
      - Skill
      security: []
      responses:
        '200':
          description: 200 OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  list:
                    type: array
                    items:
                      $ref: '#/components/schemas/PublicSkill'
                  count:
                    type: number
                  next:
                    type: string
                required:
                - list
                - count
  /api/skill/flush:
    post:
      tags:
      - Skill
      security:
      - AccessToken: []
      responses:
        '200':
          description: 200 OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SelectSkillResponse'
  /api/skill/claim:
    post:
      tags:
      - Skill
      security:
      - AccessToken: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ArtifactBody'
      responses:
        '200':
          description: 200 OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SelectSkillResponse'
components:
  schemas:
    SelectSkillResponse:
      type: object
      properties:
        message:
          type: string
      required:
      - message
    FreeTradingToolCountBonus:
      type: object
      properties:
        freeTradingToolCount:
          type: number
      required:
      - freeTradingToolCount
    PublicSkill:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        description:
          type: string
        artifacts:
          type: array
          items:
            $ref: '#/components/schemas/PublicArtifact'
      required:
      - id
      - name
      - description
      - artifacts
    TradingMentorBonus:
      type: object
      properties:
        tradingMentor:
          type: boolean
      required:
      - tradingMentor
    FeaturePlatformBonus:
      type: object
      properties:
        featurePlatform:
          type: boolean
      required:
      - featurePlatform
    UserArtifact:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        description:
          type: string
        image:
          type: string
        bonus:
          $ref: '#/components/schemas/ArtifactBonus'
        status:
          type: string
          enum:
          - default
          - open
          - done
          - claimed
        skillPoints:
          type: number
        requiredSkillPoints:
          type: number
        claimedAt:
          type:
          - string
          - 'null'
      required:
      - id
      - name
      - description
      - image
      - bonus
      - status
      - skillPoints
      - requiredSkillPoints
      - claimedAt
    PublicArtifact:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        description:
          type: string
        image:
          type: string
        bonus:
          $ref: '#/components/schemas/ArtifactBonus'
        skillPoints:
          type: number
        skillTree:
          type: string
      required:
      - id
      - name
      - description
      - image
      - bonus
      - skillPoints
      - skillTree
    FreeCourseMonthBonus:
      type: object
      properties:
        freeCourseMonth:
          type: number
      required:
      - freeCourseMonth
    IncreasedRefFeeBonus:
      type: object
      properties:
        increasedRefFee:
          type: number
      required:
      - increasedRefFee
    EducationDiscountBonus:
      type: object
      properties:
        educationDiscount:
          type: number
      required:
      - educationDiscount
    ReferralBonusPercentBonus:
      type: object
      properties:
        referralBonusPercent:
          type: number
      required:
      - referralBonusPercent
    FreeCollaborationOpportunitiesBonus:
      type: object
      properties:
        freeCollaborationOpportunities:
          type: boolean
      required:
      - freeCollaborationOpportunities
    SelectSkillBody:
      type: object
      properties:
        skill:
          type: string
      required:
      - skill
    AccessAdvancedStrategiesBonus:
      type: object
      properties:
        accessAdvancedStrategies:
          type: boolean
      required:
      - accessAdvancedStrategies
    FreeCourseForBeginnersBonus:
      type: object
      properties:
        freeCourseForBeginers:
          type: boolean
      required:
      - freeCourseForBeginers
    ArtifactBonus:
      anyOf:
      - $ref: '#/components/schemas/EducationDiscountBonus'
      - $ref: '#/components/schemas/FreeCourseMonthBonus'
      - $ref: '#/components/schemas/FreeCourseForBeginnersBonus'
      - $ref: '#/components/schemas/PersonalMentorshipAccessBonus'
      - $ref: '#/components/schemas/TradingProfitPercentBonus'
      - $ref: '#/components/schemas/AccessAdvancedStrategiesBonus'
      - $ref: '#/components/schemas/FreeTradingToolCountBonus'
      - $ref: '#/components/schemas/TradingMentorBonus'
      - $ref: '#/components/schemas/IncreasedRefFeeBonus'
      - $ref: '#/components/schemas/ReferralBonusPercentBonus'
      - $ref: '#/components/schemas/AccessPremiumContentBonus'
      - $ref: '#/components/schemas/FreeCollaborationOpportunitiesBonus'
      - $ref: '#/components/schemas/FeaturePlatformBonus'
    TradingProfitPercentBonus:
      type: object
      properties:
        tradingProfitPercent:
          type: number
      required:
      - tradingProfitPercent
    PersonalMentorshipAccessBonus:
      type: object
      properties:
        personalMentorshipAccess:
          type: boolean
      required:
      - personalMentorshipAccess
    AccessPremiumContentBonus:
      type: object
      properties:
        accessPremiumContent:
          type: boolean
      required:
      - accessPremiumContent
    UserSkillTree:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        description:
          type: string
        artifacts:
          type: array
          items:
            $ref: '#/components/schemas/UserArtifact'
        availableСhangeAt:
          type:
          - string
          - 'null'
      required:
      - id
      - name
      - description
      - artifacts
      - availableСhangeAt
    ArtifactBody:
      type: object
      properties:
        artifact:
          type: string
      required:
      - artifact
  securitySchemes:
    AccessToken:
      type: http
      scheme: bearer
    InternalKey:
      type: http
      scheme: bearer