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.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/logikio-bom-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
openapi: 3.2.0
info:
title: Logik Configurator Runtime BOM API
description: Logik.io End User API Definition. Shows payload structure and schema, authroization approach and endpoint format. Can be used for custom UI or headless implementations.
contact:
email: support@logik.io
version: 2.0.0
servers:
- url: https://{tenantName}.{sectorName}.logik.io/api
variables:
tenantName:
default: demo
description: Customer ID assigned by the service provider
sectorName:
default: demo
description: Customer ID assigned by the service provider
tags:
- name: BOM
description: APIs to retrieve BOM information
paths:
/{uuid}/bom/sales:
get:
tags:
- BOM
summary: Get Sales BOM with the given uuid for current state of Configuration
operationId: getSalesBOM
parameters:
- name: uuid
in: path
description: Unique Configuration ID Value
required: true
schema:
type: string
- name: page
in: query
description: Page number of data to be returned in response
schema:
type: integer
- name: limit
in: query
description: Size of Paged Data
schema:
type: integer
- name: sort
in: query
description: Specify property and order{asc|desc} of sort in format field,asc[desc]
schema:
type: string
responses:
200:
description: Return Sales BOM snapshot of Configuration
content:
application/json:
schema:
$ref: '#/components/schemas/BOMResponse'
400:
description: Returns Error Message from the server if invalid uuid
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
security:
- BearerAuth: []
/{uuid}/bom/{custom}:
get:
tags:
- BOM
summary: Get Custom BOM type line items defined in the admin
operationId: getCustomBOM
parameters:
- name: custom
in: path
description: Custom BOM Type name
required: true
schema:
type: string
- name: uuid
in: path
description: Unique Configuration ID Value
required: true
schema:
type: string
- name: page
in: query
description: Page number of data to be returned in response
schema:
type: integer
- name: limit
in: query
description: Size of Paged Data
schema:
type: integer
- name: sort
in: query
description: Specify property and order{asc|desc} of sort in format field,asc[desc]
schema:
type: string
responses:
200:
description: Return Sales BOM snapshot of Configuration
content:
application/json:
schema:
$ref: '#/components/schemas/BOMResponse'
400:
description: Returns Error Message from the server if invalid uuid
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
security:
- BearerAuth: []
/{uuid}/bom/manufacturing:
get:
tags:
- BOM
summary: Get Manufacturing BOM with the given uuid for current state of Configuration
operationId: getManufacturingBOM
parameters:
- name: uuid
in: path
description: Unique Configuration ID Value
required: true
schema:
type: string
- name: page
in: query
description: Page number of data to be returned in response
schema:
type: integer
- name: limit
in: query
description: Size of Paged Data
schema:
type: integer
- name: sort
in: query
description: Specify property and order{asc|desc} of sort in format field,asc[desc]
schema:
type: string
responses:
200:
description: Return Manufacturing BOM snapshot of Configuration
content:
application/json:
schema:
$ref: '#/components/schemas/BOMResponse'
400:
description: Returns Error Message from the server if invalid uuid
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
security:
- BearerAuth: []
/{uuid}/bom/:
get:
tags:
- BOM
summary: Get Entire BOM with the given uuid for current state of Configuration
operationId: getAllBOM
parameters:
- name: uuid
in: path
description: Unique Configuration ID Value
required: true
schema:
type: string
- name: page
in: query
description: Page number of data to be returned in response
schema:
type: integer
- name: limit
in: query
description: Size of Paged Data
schema:
type: integer
- name: sort
in: query
description: Specify property and order{asc|desc} of sort in format field,asc[desc]
schema:
type: string
- name: bomType
in: query
description: Pass comma separated list of bom types to be returned
schema:
type: string
responses:
200:
description: Return Entire BOM snapshot of Configuration
content:
application/json:
schema:
$ref: '#/components/schemas/BOMResponse'
400:
description: Returns Error Message from the server if invalid uuid
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
security:
- BearerAuth: []
components:
schemas:
ErrorResponse:
type: object
properties:
errorMessage:
type: string
BOMResponse:
type: object
properties:
products:
type: array
items:
$ref: '#/components/schemas/Product'
pageable:
type: object
properties:
sort:
type: object
properties:
empty:
type: boolean
sorted:
type: boolean
unsorted:
type: boolean
offset:
type: integer
pageNumber:
type: integer
pageSize:
type: integer
paged:
type: boolean
unpaged:
type: boolean
totalPages:
type: integer
totalElements:
type: integer
last:
type: boolean
size:
type: integer
number:
type: integer
numberOfElements:
type: integer
first:
type: boolean
empty:
type: boolean
total:
type: integer
Product:
type: object
properties:
id:
type: string
selectionType:
type: string
quantity:
type: integer
bomType:
type: string
level:
type: integer
parentProduct:
type: integer
notes:
type: string
uniqueIdentifier:
type: integer
description:
type: string
externalId:
type: string
name:
type: string
price:
type: number
extPrice:
type: number
securitySchemes:
BearerAuth:
type: http
scheme: bearer