Getting Started¶
To begin using the Product Information API, follow these steps:
- Contact our support team to purchase an API Key. You can find our contact information here.
- 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