Dopex strikes-chain API

The strikes-chain API from Dopex — 1 operation(s) for strikes-chain.

Operations 1

GET /clamm/strikes-chain Get strikes chain or options chain of a options market #

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/dopex-strikes-chain-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

dopex-strikes-chain-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Stryke deposit Strikes Chain API
  description: ''
  version: '1.0'
  contact: {}
servers:
- url: https://api.stryke.xyz
tags:
- name: strikes-chain
paths:
  /clamm/strikes-chain:
    get:
      operationId: StrikesChainController_getStrikesChain
      summary: Get strikes chain or options chain of a options market
      parameters:
      - name: optionMarket
        required: true
        in: query
        description: Address of the option market
        schema:
          type: string
      - name: chainId
        required: true
        in: query
        description: Chain ID of the network
        schema:
          enum:
          - 5000
          - 42161
          type: number
      - name: callsReach
        required: true
        in: query
        schema:
          enum:
          - 100
          - 200
          type: number
      - name: putsReach
        required: true
        in: query
        schema:
          enum:
          - 100
          - 200
          type: number
      responses:
        '200':
          description: List of strikes of the option market
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/StrikesChainResponseDto'
      tags:
      - strikes-chain
components:
  schemas:
    StrikesChainDto:
      type: object
      properties:
        totalLiquidity:
          type: string
          readOnly: true
        availableLiquidity:
          type: string
          readOnly: true
        utilization:
          type: string
          readOnly: true
        apr:
          type: string
          readOnly: true
        handler:
          readOnly: true
          allOf:
          - $ref: '#/components/schemas/HandlerMeta'
        meta:
          readOnly: true
          allOf:
          - $ref: '#/components/schemas/StrikesChainMetaDto'
        token:
          readOnly: true
          allOf:
          - $ref: '#/components/schemas/TokenDto'
      required:
      - totalLiquidity
      - availableLiquidity
      - utilization
      - apr
      - handler
      - meta
      - token
    TokenDto:
      type: object
      properties:
        address:
          type: string
          description: Address of the ERC20 token
        decimals:
          type: string
          description: Decimals of the ERC20 token
        symbol:
          type: string
          description: Symbol of the ERC20 token
      required:
      - address
      - decimals
      - symbol
    StrikesChainResponseDto:
      type: object
      properties:
        <strike price>:
          readOnly: true
          allOf:
          - $ref: '#/components/schemas/StrikesChainDto'
      required:
      - <strike price>
    HandlerMeta:
      type: object
      properties:
        name:
          type: string
        deprecated:
          type: boolean
        handler:
          type: object
        pool:
          type: string
      required:
      - name
      - deprecated
      - handler
      - pool
    StrikesChainMetaDto:
      type: object
      properties:
        hook:
          type: string
          readOnly: true
        tickLower:
          type: number
          readOnly: true
        tickUpper:
          type: number
          readOnly: true
        totalTokenLiquidity:
          type: string
          readOnly: true
        availableTokenLiquidity:
          type: string
          readOnly: true
        totalLiquidity:
          type: string
          readOnly: true
        availableLiquidity:
          type: string
          readOnly: true
      required:
      - hook
      - tickLower
      - tickUpper
      - totalTokenLiquidity
      - availableTokenLiquidity
      - totalLiquidity
      - availableLiquidity