REKKI general API

The general API from REKKI — 2 operation(s) for general.

Operations 2

POST /integration/v1/log Post a log message for the supplier for internal debugging. There is no need to handle response from this endpoint #
POST /integration/v3/log Post a log message for the supplier for internal debugging. There is no need to handle response from this endpoint #

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/rekki-general-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

rekki-general-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: 'The base URL for all API endpoints is https://api.rekki.com/api


    Api key value consists of word Bearer together with api key that you can get from integrations@rekki.com

    '
  title: Rekki.com Supplier catalog General API
  contact:
    email: integrations@rekki.com
  license:
    name: All rights reserved
  version: '1.0'
servers:
- url: https://api.rekki.com/api
tags:
- name: general
paths:
  /integration/v1/log:
    post:
      security:
      - ApiKeyAuth: []
      tags:
      - general
      summary: Post a log message for the supplier for internal debugging. There is no need to handle response from this endpoint
      operationId: PostLogMessage
      deprecated: true
      parameters:
      - description: Required header
        name: X-REKKI-Authorization-Type
        in: header
        required: true
        schema:
          type: string
          enum:
          - supplier_api_token
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/main.LogMessage'
        description: Payload
        required: true
  /integration/v3/log:
    post:
      security:
      - ApiKeyAuth: []
      tags:
      - general
      summary: Post a log message for the supplier for internal debugging. There is no need to handle response from this endpoint
      operationId: PostLogMessageV3
      parameters:
      - description: Required header
        name: X-REKKI-Authorization-Type
        in: header
        required: true
        schema:
          type: string
          enum:
          - supplier_api_token
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v3.LogMessage'
        description: Payload
        required: true
components:
  schemas:
    main.LogMessage:
      type: object
      properties:
        level:
          description: 'possible values are: "panic", "error", "fatal", "warn", "warning", "info", "debug", "trace"'
          type: string
        message:
          type: string
    v3.LogMessage:
      type: object
      properties:
        level:
          description: 'possible values are: "panic", "error", "fatal", "warn", "warning", "info", "debug", "trace"'
          type: string
        message:
          type: string
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      name: Authorization
      in: header