Read the product overview
List published Insights
Resolve a product
Generated API reference
Download the reviewed OpenAPI document used to generate the public reference and examples.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
BETA · Evidence is dated. No listing is a firm offer or authority to transact.
Make your first anonymous Middleman API calls.
curl --fail --silent --show-error \
https://middlemantechnologies.com/api/v1/site
curl --fail --silent --show-error \
https://middlemantechnologies.com/api/v1/insights
curl --fail --silent --show-error \
https://middlemantechnologies.com/api/v1/products/siemens/6ES7214-1AG40-0XB0
const response = await fetch(
"https://middlemantechnologies.com/api/v1/products/siemens/6ES7214-1AG40-0XB0",
);
if (!response.ok) {
throw new Error(`Middleman returned ${response.status}`);
}
const { data } = await response.json();
console.log(data.manufacturer.name, data.manufacturerPartNumber);
import requests
response = requests.get(
"https://middlemantechnologies.com/api/v1/products/siemens/6ES7214-1AG40-0XB0",
timeout=10,
)
response.raise_for_status()
data = response.json()["data"]
print(data["manufacturer"]["name"], data["manufacturerPartNumber"])
Was this page helpful?