EVEDEX Lucky Shot API

The Lucky Shot API from EVEDEX — 8 operation(s) for lucky shot.

Operations 9

GET /api/lucky-shot/winners
POST /api/lucky-shot
GET /api/lucky-shot
GET /api/lucky-shot/share/{code} Get image for user lucky shot
POST /api/lucky-shot/share Share image for user lucky shot
POST /api/lucky-shot/select
GET /api/lucky-shot/levels
POST /api/lucky-shot/claim
POST /api/lucky-shot/award

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-lucky-shot-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-lucky-shot-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: EVEDEX - Game Lucky Shot API
  version: 1.0.0
servers:
- url: https://game-api.evedex.com
tags:
- name: Lucky Shot
paths:
  /api/lucky-shot/winners:
    get:
      tags:
      - Lucky Shot
      security:
      - AccessToken: []
      parameters:
      - in: query
        name: limit
        schema:
          $ref: '#/components/schemas/PageLimitParam'
      - in: query
        name: best
        schema:
          type: string
          enum:
          - 'yes'
          - 'no'
      responses:
        '200':
          description: 200 OK
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    smartAccountAddress:
                      type: string
                    avatar:
                      type: string
                    amount:
                      type: number
                    transactionHash:
                      type: string
                    createdAt:
                      type: string
                  required:
                  - smartAccountAddress
                  - avatar
                  - amount
                  - transactionHash
                  - createdAt
  /api/lucky-shot:
    post:
      tags:
      - Lucky Shot
      security:
      - AccessToken: []
      responses:
        '200':
          description: 200 OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                  level:
                    type: number
                  status:
                    type: string
                    enum:
                    - process
                    - fail
                    - claimed
                    - withdrawn
                  createdAt:
                    type: string
                  updatedAt:
                    type: string
                required:
                - id
                - level
                - status
                - createdAt
                - updatedAt
    get:
      tags:
      - Lucky Shot
      security:
      - AccessToken: []
      responses:
        '200':
          description: 200 OK
          content:
            application/json:
              schema:
                type:
                - object
                - 'null'
                properties:
                  id:
                    type: string
                  level:
                    type: number
                  status:
                    type: string
                    enum:
                    - process
                    - fail
                    - claimed
                    - withdrawn
                  createdAt:
                    type: string
                  updatedAt:
                    type: string
                  history:
                    type: array
                    items:
                      type: object
                      properties:
                        level:
                          type: number
                        value:
                          type: number
                        createdAt:
                          type: string
                      required:
                      - level
                      - value
                      - createdAt
                required:
                - id
                - level
                - status
                - createdAt
                - updatedAt
                - history
  /api/lucky-shot/share/{code}:
    get:
      tags:
      - Lucky Shot
      summary: Get image for user lucky shot
      security: []
      parameters:
      - in: path
        name: code
        schema:
          type: string
        required: true
      - in: query
        name: renderingMode
        schema:
          type: string
          enum:
          - narrow
          - wide
          default: wide
      responses:
        '200':
          description: 200 OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LuckyShotImageGetResponse'
  /api/lucky-shot/share:
    post:
      tags:
      - Lucky Shot
      summary: Share image for user lucky shot
      security:
      - AccessToken: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/LuckyShotImageShareBody'
      responses:
        '200':
          description: 200 OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LuckyShotImageShareResponse'
  /api/lucky-shot/select:
    post:
      tags:
      - Lucky Shot
      security:
      - AccessToken: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                value:
                  anyOf:
                  - type: number
                    const: 0
                  - type: number
                    const: 1
              required:
              - value
      responses:
        '200':
          description: 200 OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                  level:
                    type: number
                  status:
                    type: string
                    enum:
                    - process
                    - fail
                    - claimed
                    - withdrawn
                  createdAt:
                    type: string
                  updatedAt:
                    type: string
                  awardedPoints:
                    type: number
                required:
                - id
                - level
                - status
                - createdAt
                - updatedAt
                - awardedPoints
  /api/lucky-shot/levels:
    get:
      tags:
      - Lucky Shot
      security: []
      responses:
        '200':
          description: 200 OK
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: number
                    winningAmount:
                      type: number
                    points:
                      type: number
                  required:
                  - id
                  - winningAmount
                  - points
  /api/lucky-shot/claim:
    post:
      tags:
      - Lucky Shot
      security:
      - AccessToken: []
      responses:
        '200':
          description: 200 OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  lottery:
                    type: object
                    properties:
                      id:
                        type: string
                      level:
                        type: number
                      status:
                        type: string
                        enum:
                        - process
                        - fail
                        - claimed
                        - withdrawn
                      createdAt:
                        type: string
                      updatedAt:
                        type: string
                    required:
                    - id
                    - level
                    - status
                    - createdAt
                    - updatedAt
                  payload:
                    type: object
                    properties:
                      nonce:
                        type: string
                      recipient:
                        type: string
                      token:
                        type: string
                      amount:
                        type: string
                      signature:
                        type: string
                    required:
                    - nonce
                    - recipient
                    - token
                    - amount
                    - signature
                required:
                - lottery
                - payload
  /api/lucky-shot/award:
    post:
      tags:
      - Lucky Shot
      security:
      - InternalKey: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AwardLuckyShotTicketsBody'
      responses:
        '200':
          description: 200 OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AwardLuckyShotTicketsResponse'
components:
  schemas:
    AwardLuckyShotTicketsResponse:
      type: object
      properties:
        authId:
          type: string
        amount:
          type: number
        tickets:
          $ref: '#/components/schemas/LuckyShotTickets'
      required:
      - authId
      - amount
      - tickets
    LuckyShotImageShareBody:
      type: object
      properties:
        renderingMode:
          type: string
          enum:
          - narrow
          - wide
      required:
      - renderingMode
    AwardLuckyShotTicketsBody:
      type: object
      properties:
        authId:
          type: string
          description: User Auth Id
        amount:
          type: integer
          exclusiveMinimum: 0
          description: Number of tickets to award
      required:
      - authId
      - amount
    LuckyShotTickets:
      type: object
      properties:
        received:
          type: number
          description: Total Lucky Shot tickets received
        used:
          type: number
          description: Total Lucky Shot tickets used
        available:
          type: number
          description: Available Lucky Shot tickets (received - used)
      required:
      - received
      - used
      - available
    LuckyShotImageShareResponse:
      type: object
      properties:
        badgeUrl:
          type: string
          format: uri
      required:
      - badgeUrl
    LuckyShotImageGetResponse:
      type: object
      properties:
        badgeUrl:
          type: string
          format: uri
      required:
      - badgeUrl
    PageLimitParam:
      type: string
      default: '50'
  securitySchemes:
    AccessToken:
      type: http
      scheme: bearer
    InternalKey:
      type: http
      scheme: bearer