Qomplement API Keys API

The API Keys API from Qomplement — 2 operation(s) for api keys.

Operations 3

GET /v1/keys List Api Keys #
POST /v1/keys Create Api Key #
DELETE /v1/keys/{key_id} Revoke Api Key #

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/qomplement-api-keys-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

qomplement-api-keys-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: StructDatafy API Keys API
  description: Document extraction, PDF filling, and Excel filling API
  version: 1.0.0
servers:
- url: https://developer-api.qomplement.com/v1
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: API Keys
paths:
  /v1/keys:
    get:
      tags:
      - API Keys
      summary: List Api Keys
      description: List all API keys.
      operationId: list_api_keys_v1_keys_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/APIKeyResponse'
                type: array
                title: Response List Api Keys V1 Keys Get
    post:
      tags:
      - API Keys
      summary: Create Api Key
      description: Create a new API key. The full key is shown only once.
      operationId: create_api_key_v1_keys_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/APIKeyCreate'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIKeyCreated'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /v1/keys/{key_id}:
    delete:
      tags:
      - API Keys
      summary: Revoke Api Key
      description: Revoke an API key.
      operationId: revoke_api_key_v1_keys__key_id__delete
      parameters:
      - name: key_id
        in: path
        required: true
        schema:
          type: string
          title: Key Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    APIKeyCreated:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        key_prefix:
          type: string
          title: Key Prefix
        name:
          anyOf:
          - type: string
          - type: 'null'
          title: Name
        owner_email:
          type: string
          title: Owner Email
        is_active:
          type: boolean
          title: Is Active
        rate_limit_per_minute:
          type: integer
          title: Rate Limit Per Minute
        monthly_request_limit:
          type: integer
          title: Monthly Request Limit
        created_at:
          type: string
          format: date-time
          title: Created At
        last_used_at:
          anyOf:
          - type: string
            format: date-time
          - type: 'null'
          title: Last Used At
        key:
          type: string
          title: Key
      type: object
      required:
      - id
      - key_prefix
      - name
      - owner_email
      - is_active
      - rate_limit_per_minute
      - monthly_request_limit
      - created_at
      - last_used_at
      - key
      title: APIKeyCreated
      description: Returned only on creation — includes the full key (shown once).
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
    APIKeyCreate:
      properties:
        name:
          type: string
          title: Name
          description: Friendly name for the key
        owner_email:
          type: string
          title: Owner Email
          description: Email of the key owner
        rate_limit_per_minute:
          type: integer
          maximum: 1000.0
          minimum: 1.0
          title: Rate Limit Per Minute
          default: 60
        monthly_request_limit:
          type: integer
          minimum: 1.0
          title: Monthly Request Limit
          default: 10000
      type: object
      required:
      - name
      - owner_email
      title: APIKeyCreate
    APIKeyResponse:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        key_prefix:
          type: string
          title: Key Prefix
        name:
          anyOf:
          - type: string
          - type: 'null'
          title: Name
        owner_email:
          type: string
          title: Owner Email
        is_active:
          type: boolean
          title: Is Active
        rate_limit_per_minute:
          type: integer
          title: Rate Limit Per Minute
        monthly_request_limit:
          type: integer
          title: Monthly Request Limit
        created_at:
          type: string
          format: date-time
          title: Created At
        last_used_at:
          anyOf:
          - type: string
            format: date-time
          - type: 'null'
          title: Last Used At
      type: object
      required:
      - id
      - key_prefix
      - name
      - owner_email
      - is_active
      - rate_limit_per_minute
      - monthly_request_limit
      - created_at
      - last_used_at
      title: APIKeyResponse