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:

  1. Supplier:
    • Value: "SCI"
    • The supplier or manufacturer of the component.
  2. FoundMPN:
    • Value: "015401.5DRT"
    • The Manufacturer Part Number (MPN) of the component.
  3. FoundBrand:
    • Value: "LITTELFUSE"
    • The brand of the component.
  4. 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.
  5. StockATS:
    • Value: 80
    • The number of units currently in stock for this component.
  6. Currency:
    • Value: "USD"
    • The currency in which the price is quoted.
  7. 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.
  8. DateCode:
    • Value: "19++"
    • A code representing the manufacturing date of the product (often used for component batch tracking).
  9. LeadTime:
    • Value: ""
    • The lead time for ordering the component (empty in this case, but can contain details like delivery time).
  10. MOQ (Minimum Order Quantity):
    • Value: 1
    • The minimum quantity of the component that can be ordered.
  11. MPQ (Minimum Purchase Quantity):
    • Value: 1
    • The minimum quantity for purchasing, indicating the smallest order unit.
  12. Packaging:
    • Value: ""
    • The packaging information for the component (if available).
  13. 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.
  14. IsAuthorised:
    • Value: false
    • A flag indicating whether the supplier is authorized or not for this particular part.

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.

This is a staging environment
×