EVEDEX API Key API

The ApiKey API from EVEDEX — 3 operation(s) for apikey.

Operations 3

POST /auth/api-key/verify
POST /auth/api-key/sync
POST /auth/api-key/disable

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-apikey-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-apikey-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: EVEDEX - Auth API Key API
  version: 1.0.0
servers:
- url: https://auth-api.evedex.com
tags:
- name: ApiKey
paths:
  /auth/api-key/verify:
    post:
      tags:
      - ApiKey
      security:
      - InternalToken: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ApiKeyVerifyBody'
      responses:
        '200':
          description: 200 OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiKeyVerifyResponse'
  /auth/api-key/sync:
    post:
      tags:
      - ApiKey
      security:
      - InternalToken: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ApiKeySyncBody'
      responses:
        '200':
          description: 200 OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmptyResponse'
  /auth/api-key/disable:
    post:
      tags:
      - ApiKey
      security:
      - InternalToken: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ApiKeyDisableBody'
      responses:
        '200':
          description: 200 OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmptyResponse'
components:
  schemas:
    ApiKeySyncBody:
      type: object
      properties:
        id:
          type: string
          format: uuid
        name:
          type: string
        mask:
          type: string
        isArchived:
          type: boolean
        expireAt:
          type:
          - string
          - 'null'
          default: null
        createdAt:
          type: string
        updatedAt:
          type:
          - string
          - 'null'
          default: null
        deletedAt:
          type:
          - string
          - 'null'
          default: null
        settings:
          type: object
          properties:
            scopes:
              type: array
              items:
                type: string
                enum:
                - partner
                - exchange
              default: []
        user:
          type: string
        hash:
          type: string
      required:
      - id
      - name
      - mask
      - isArchived
      - createdAt
      - settings
      - user
      - hash
    ApiKeyVerifyBody:
      type: object
      properties:
        scope:
          type: string
          enum:
          - partner
          - exchange
        apiKey:
          type: string
      required:
      - scope
      - apiKey
    ApiKeyDisableBody:
      type: object
      properties:
        scope:
          type: string
          enum:
          - partner
          - exchange
        apiKey:
          type: string
      required:
      - scope
      - apiKey
    ApiKeyVerifyResponse:
      type: object
      properties:
        id:
          type: string
          format: uuid
        role:
          type: string
          enum:
          - admin
          - manager
          - user
          - academy-curator
          - academy-moderator
        accountType:
          type: string
          enum:
          - main
          - sub
          - funded
        parent:
          type:
          - string
          - 'null'
          default: null
        expireAt:
          type:
          - string
          - 'null'
          default: null
      required:
      - id
      - role
      - accountType
      - parent
      - expireAt
    EmptyResponse:
      type: object
  securitySchemes:
    InternalToken:
      type: http
      scheme: bearer
    AccessToken:
      type: http
      scheme: bearer
    RefreshToken:
      type: http
      scheme: bearer