Lukka Analytics - Valuations API

The Analytics - Valuations API from Lukka — 2 operation(s) for analytics - valuations.

Operations 3

POST /datacalculation Run Calculation #
GET /datacalculation Get Results #
GET /datacalculation/status Get Status #

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/lukka-analytics-valuations-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

lukka-analytics-valuations-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Lukka Valuation (Data Calculation) Analytics - Valuations API
  version: 1.0.0
  description: 'Bespoke pricing and valuation calculations for digital asset derivatives: submit a calculation run, poll its status and retrieve results.'
  contact:
    name: Lukka Support
    url: https://lukka.tech/support/
  x-origin:
  - format: postman
    version: 2.1.0
    url: https://apidocs.lukka.tech/
servers:
- url: https://data-calculation-api.lukka.tech
  description: Lukka production (data-calculation-api.lukka.tech)
security:
- bearerAuth: []
tags:
- name: Analytics - Valuations
paths:
  /datacalculation:
    post:
      operationId: runCalculation
      summary: Run Calculation
      tags:
      - Analytics - Valuations
      requestBody:
        required: true
        content:
          application/json:
            example:
              calculation: ''
              data: {}
              params:
                startTs: 2025-01-29T14:50Z
                endTs: 2025-01-29T15:40Z
                clientId: clientId
                parentId: clientId
      responses:
        '200':
          description: Successful response
    get:
      operationId: getResults
      summary: Get Results
      tags:
      - Analytics - Valuations
      responses:
        '200':
          description: Successful response
  /datacalculation/status:
    get:
      operationId: getStatus
      summary: Get Status
      tags:
      - Analytics - Valuations
      responses:
        '200':
          description: Successful response
components:
  securitySchemes:
    oktaClientCredentials:
      type: oauth2
      description: Lukka issues JWT access tokens from its Okta authorization servers using the OAuth 2.0 client_credentials grant. Encode the Lukka-issued client id and secret as HTTP Basic credentials on the token request; the returned access_token is then sent as a Bearer token on every data API call.
      flows:
        clientCredentials:
          tokenUrl: https://sso.lukka.tech/oauth2/aus1imo2fqcx5Ik4Q0h8/v1/token
          scopes:
            pricing: Access to Lukka Pricing & Valuation and Market Data endpoints
            interclient_access: Cross-client access scope advertised by the Lukka Okta authorization servers
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: JWT access token obtained from the Lukka Okta token endpoint.