The chat responses are generated using Generative AI technology for intuitive search and may not be entirely accurate. They are not intended as professional advice. For full details, including our use rights, privacy practices and potential export control restrictions, please refer to our Generative AI Service Terms of Use and Generative AI Service Privacy Information. As this is a test version, please let us know if something irritating comes up. Like you get recommended a chocolate fudge ice cream instead of an energy managing application. If that occurs, please use the feedback button in our contact form!
Skip to content
Product-Information

Empowering Your CMMS with the Product Information API 🚀

Getting Started¶

To begin using the Product Information API, follow these steps:

  1. Contact our support team to purchase an API Key. You can find our contact information here.
  2. Include your API Key in the Authorization header of your HTTP requests.

Example requests¶

API_KEY=your-api-key

# Obsolescence information about product "1PH8350-7MK40-0AX0"
curl -X 'GET' \
  'https://product-information-hub.siemens.cloud/api/products/1PH8350-7MK40-0AX0/obsolescence' \
  -H 'accept: application/json' \
  -H 'Authorization: ${API_KEY}'

# Delivery information about product "1PH8350-7MK40-0AX0"
curl -X 'GET' \
  'https://product-information-hub.siemens.cloud/api/products/1PH8350-7MK40-0AX0/delivery' \
  -H 'accept: application/json' \
  -H 'Authorization: ${API_KEY}'

# Information about your API key (ownership, available credits, ...)
curl -X 'GET' \
  'https://product-information-hub.siemens.cloud/api/api-key-details' \
  -H 'accept: application/json' \
  -H 'Authorization: ${API_KEY}'

Note

For more details on how to use the API and understand the response, please see the API Specification