REKKI order-guide API

The order-guide API from REKKI — 1 operation(s) for order-guide.

Operations 2

GET /integration/v3/order-guide Retrieve customer's order guide #
POST /integration/v3/order-guide Replace customer's order guide #

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-order-guide-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-order-guide-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 Order Guide API
  contact:
    email: integrations@rekki.com
  license:
    name: All rights reserved
  version: '1.0'
servers:
- url: https://api.rekki.com/api
tags:
- name: order-guide
paths:
  /integration/v3/order-guide:
    get:
      security:
      - ApiKeyAuth: []
      tags:
      - order-guide
      summary: Retrieve customer's order guide
      operationId: GetOrderGuideV3
      parameters:
      - description: Required header
        name: X-REKKI-Authorization-Type
        in: header
        required: true
        schema:
          type: string
          enum:
          - supplier_api_token
      - description: Customer account number
        name: CustomerAccountNumber
        in: query
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v3.OrderGuideResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v3.GenericErrorResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: string
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                type: string
    post:
      security:
      - ApiKeyAuth: []
      tags:
      - order-guide
      summary: Replace customer's order guide
      operationId: ReplaceOrderGuideV3
      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:
                $ref: '#/components/schemas/v3.OrderGuideResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v3.GenericErrorResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: string
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v3.OrderGuideRequest'
        description: Parameters
        required: true
components:
  schemas:
    v3.OrderGuideParameters:
      type: object
      required:
      - name
      - reference
      - units
      properties:
        reference:
          description: product code for the item that maps to the supplier’s catalog.
          type: string
          x-order: '0'
          example: BLBP
        name:
          description: item name as would be defined on the customer’s product list.
          type: string
          x-order: '1'
          example: Blueberries
        units:
          description: a unit that the item can be ordered in.
          type: string
          x-order: '2'
          example: Pint
        price:
          description: the order price in cents for the item per unit.
          type: string
          x-order: '3'
          example: '299'
        archived:
          description: 'status of an item in the order-guide.

            If False meaning the item is currently visible to the customer,

            by setting it True the item can temporarily be made unavailable.'
          type: boolean
          x-order: '4'
          example: false
    v3.OrderGuideObject:
      type: object
      required:
      - name
      - reference
      - units
      properties:
        reference:
          description: product code for the item that maps to the supplier’s catalog.
          type: string
          x-order: '0'
          example: BLBP
        name:
          description: item name as would be defined on the customer’s product list.
          type: string
          x-order: '1'
          example: Blueberries
        units:
          description: a unit that the item can be ordered in.
          type: string
          x-order: '2'
          example: Pint
        price:
          description: the order price in cents for the item per unit.
          type: string
          x-order: '3'
          example: '299'
        archived:
          description: 'status of an item in the order-guide.

            If False meaning the item is currently visible to the customer,

            by setting it True the item can temporarily be made unavailable.'
          type: boolean
          x-order: '4'
          example: false
        deleted:
          description: status of an item in the order-guide. If True means the item has been deleted from the order-guide
          type: boolean
          x-order: '5'
          example: false
    v3.OrderGuideResponse:
      type: object
      properties:
        customer_account_number:
          type: string
          example: REKK1
        products:
          type: array
          items:
            $ref: '#/components/schemas/v3.OrderGuideObject'
    v3.OrderGuideRequest:
      type: object
      required:
      - customer_account_number
      - products
      properties:
        customer_account_number:
          description: the customer the order-guide belongs to
          type: string
          example: REKK1
        products:
          type: array
          items:
            $ref: '#/components/schemas/v3.OrderGuideParameters'
    v3.GenericErrorResponse:
      type: object
      properties:
        error:
          type: string
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      name: Authorization
      in: header