Conxai production_tracking API

The production_tracking API from Conxai — 4 operation(s) for production_tracking.

Operations 4

GET /weather Weather
GET /{project_ID}/postprocess Postprocess
GET /{project_ID}/logs Logs
POST /{project_ID}//graphs Graphs

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/conxai-production-tracking-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

conxai-production-tracking-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Customer API provide base methods for create company, projects, users, add users to projects, end etc.
  title: Customer annotations Production Tracking API
  termsOfService: http://swagger.io/terms/
  contact:
    name: Dmytro Kabachenko
    email: dmytro.kabachenko@conxai.com
  license:
    name: Apache 2.0
    url: http://www.apache.org/licenses/LICENSE-2.0.html
  version: '1.0'
servers:
- url: //customer.conxai.ai
tags:
- name: production_tracking
paths:
  /weather:
    get:
      tags:
      - production_tracking
      summary: Weather
      description: This endpoint retrieves weather data for a given latitude and longitude. It uses the OpenMeteo API to fetch the weather forecast
      parameters:
      - name: lat
        in: query
        schema:
          type: string
        example: '{{lat}}'
      - name: long
        in: query
        schema:
          type: string
        example: '{{long}}'
      responses:
        '200':
          description: Successful response
          content:
            application/json: {}
  /{project_ID}/postprocess:
    get:
      tags:
      - production_tracking
      summary: Postprocess
      description: This endpoint handles the postprocessing of production tracking data for a given project. It generates two basic graphs (ring_count and phase_count) based on the project type.
      parameters:
      - name: project_ID
        in: path
        schema:
          type: string
        required: true
      responses:
        '200':
          description: Successful response
          content:
            application/json: {}
  /{project_ID}/logs:
    get:
      tags:
      - production_tracking
      summary: Logs
      description: This endpoint retrieves the logs for a given project.
      parameters:
      - name: project_ID
        in: path
        schema:
          type: string
        required: true
      responses:
        '200':
          description: Successful response
          content:
            application/json: {}
  /{project_ID}//graphs:
    post:
      tags:
      - production_tracking
      summary: Graphs
      description: This endpoint generates graphs based on the provided filters and configurations for a given project. It creates various graphs such as ring count, phase count, ring duration, and phase duration.
      requestBody:
        content: {}
      parameters:
      - name: start
        in: query
        schema:
          type: string
        example: '{{start}}'
      - name: end
        in: query
        schema:
          type: string
        example: '{{end}}'
      - name: project_ID
        in: path
        schema:
          type: string
        required: true
      responses:
        '200':
          description: Successful response
          content:
            application/json: {}
components:
  securitySchemes:
    ApiKeyAuth:
      description: Provide the given API key
      type: apiKey
      name: X-Api-Key
      in: header
x-readme:
  explorer-enabled: true
  proxy-enabled: true