This API provides real-time stock information for electronic components from SCI. Below is a detailed breakdown of the key data points provided in the JSON response from the API:
Example API Endpoint:
https://internal.supremecomponents.com/automate/scistock/scistock-v3.php?mode=json
API Response Example:
{
"Supplier": "SCI",
"FoundMPN": "015401.5DRT",
"FoundBrand": "LITTELFUSE",
"FoundDescription": "Fuse Chip Slow Blow Acting 1.5A SMD Solder Pad 9.73 X 5.03 X 3.81mm T/R CSA/PSE/UL",
"StockATS": 80,
"Currency": "USD",
"ProductLink": "https://media.digikey.com/Photos/Littelfuse%20Photos/154%5E154T-Omni-Blok-Series-White_tmb.jpg",
"DateCode": "19++",
"LeadTime": "",
"MOQ": 1,
"MPQ": 1,
"Packaging": "",
"PriceBreaks": [
{
"Quantity": 1,
"Price": 1.81743
}
],
"IsAuthorised": false
}
Explanation of Fields:
- Supplier:
- Value:
"SCI"
- The supplier or manufacturer of the component.
- Value:
- FoundMPN:
- Value:
"015401.5DRT"
- The Manufacturer Part Number (MPN) of the component.
- Value:
- FoundBrand:
- Value:
"LITTELFUSE"
- The brand of the component.
- Value:
- FoundDescription:
- Value:
"Fuse Chip Slow Blow Acting 1.5A SMD Solder Pad 9.73 X 5.03 X 3.81mm T/R CSA/PSE/UL"
- A detailed description of the component, including its specifications.
- Value:
- StockATS:
- Value:
80
- The number of units currently in stock for this component.
- Value:
- Currency:
- Value:
"USD"
- The currency in which the price is quoted.
- Value:
- ProductLink:
- Value:
"https://media.digikey.com/Photos/Littelfuse%20Photos/154%5E154T-Omni-Blok-Series-White_tmb.jpg"
- A link to an image of the product or its datasheet.
- Value:
- DateCode:
- Value:
"19++"
- A code representing the manufacturing date of the product (often used for component batch tracking).
- Value:
- LeadTime:
- Value:
""
- The lead time for ordering the component (empty in this case, but can contain details like delivery time).
- Value:
- MOQ (Minimum Order Quantity):
- Value:
1
- The minimum quantity of the component that can be ordered.
- Value:
- MPQ (Minimum Purchase Quantity):
- Value:
1
- The minimum quantity for purchasing, indicating the smallest order unit.
- Value:
- Packaging:
- Value:
""
- The packaging information for the component (if available).
- Value:
- PriceBreaks:
- Value:jsonCopy
[ { "Quantity": 1, "Price": 1.81743 } ]
- A list of price breaks where each price is associated with a particular quantity of the component. For example, the price for 1 unit is $1.81743 USD.
- Value:jsonCopy
- IsAuthorised:
- Value:
false
- A flag indicating whether the supplier is authorized or not for this particular part.
- Value:
How to Use the API:
- Retrieve Stock and Pricing: Use the provided API endpoint to get real-time information about stock availability, pricing, and more for electronic components.
- Query Parameters: The
mode=json
query parameter returns the stock data in a JSON format that you can use to display or process the information. - Integration: This data can be integrated into your e-commerce platform, inventory system, or used for customer-facing applications to track component availability and prices.