Conxai exports API

The exports API from Conxai — 2 operation(s) for exports.

Operations 3

GET /projects/{projectId}/use-cases/{useCaseId}/exports List exported files for a use case
GET /projects/{projectId}/use-cases/{useCaseId}/exports/{exportId} Get presigned download link for exported file
DELETE /projects/{projectId}/use-cases/{useCaseId}/exports/{exportId} Delete exported file

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-exports-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-exports-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 Exports 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: exports
paths:
  /projects/{projectId}/use-cases/{useCaseId}/exports:
    get:
      security:
      - BearerAuth: []
      tags:
      - exports
      summary: List exported files for a use case
      parameters:
      - description: Project UUID
        name: projectId
        in: path
        required: true
        schema:
          type: string
      - description: Use Case UUID
        name: useCaseId
        in: path
        required: true
        schema:
          type: string
      - description: 'Maximum number of items to return (default: 20)'
        name: limit
        in: query
        schema:
          type: integer
      - description: 'Number of items to skip (default: 0)'
        name: offset
        in: query
        schema:
          type: integer
      responses:
        '200':
          description: OK
          headers:
            All-items-count:
              description: Total number of items
              schema:
                type: string
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/conxai_com_docs-api_structures_api.ExportFile'
  /projects/{projectId}/use-cases/{useCaseId}/exports/{exportId}:
    get:
      security:
      - BearerAuth: []
      tags:
      - exports
      summary: Get presigned download link for exported file
      parameters:
      - description: Project UUID
        name: projectId
        in: path
        required: true
        schema:
          type: string
      - description: Use Case UUID
        name: useCaseId
        in: path
        required: true
        schema:
          type: string
      - description: Export UUID
        name: exportId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns presignedUrl
          content:
            application/json:
              schema:
                type: object
                additionalProperties:
                  type: string
        '404':
          description: File not ready or found
          content:
            application/json:
              schema:
                type: string
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                type: object
                additionalProperties:
                  type: string
    delete:
      security:
      - BearerAuth: []
      tags:
      - exports
      summary: Delete exported file
      parameters:
      - description: Project UUID
        name: projectId
        in: path
        required: true
        schema:
          type: string
      - description: Use Case UUID
        name: useCaseId
        in: path
        required: true
        schema:
          type: string
      - description: Export UUID
        name: exportId
        in: path
        required: true
        schema:
          type: string
      responses:
        '204':
          description: No Content
          content:
            application/json:
              schema:
                type: string
        '404':
          description: File not found
          content:
            application/json:
              schema:
                type: string
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                type: object
                additionalProperties:
                  type: string
components:
  schemas:
    conxai_com_docs-api_structures_api.ExportFile:
      type: object
      properties:
        created_at:
          type: string
        created_by:
          type: string
        file_name:
          type: string
        id:
          type: string
        status:
          type: string
  securitySchemes:
    ApiKeyAuth:
      description: Provide the given API key
      type: apiKey
      name: X-Api-Key
      in: header
x-readme:
  explorer-enabled: true
  proxy-enabled: true