Supply: Factory lead time for parts

Modified on Wed, 13 Sep 2023 at 02:04 PM

There are two fields you can query in the API.

  1. factoryLeadDays on SupOffer returns the number of days to acquire parts from the factory.

  2. estimatedFactoryLeadDays on SupPart returns the estimated factory lead time in days derived from trusted distributor offers.

Here's an example query for authorized sellers:

query LeadDaysSearch {
  supSearch(q: "IRL3803STRLPBF", limit: 2) {
    results {
      part {
        mpn
        estimatedFactoryLeadDays
        sellers(authorizedOnly: true) {
          offers {
            factoryLeadDays
          }
        }
      }
    }
  }
}


Was this article helpful?

That’s Great!

Thank you for your feedback

Sorry! We couldn't be helpful

Thank you for your feedback

Let us know how can we improve this article!

Select atleast one of the reasons
CAPTCHA verification is required.

Feedback sent

We appreciate your effort and will try to fix the article