tejash patel
tejash patel

Reputation: 591

Shopify - Retrieves multiple variant detail by multiple variant id

Is there any way to get multiple variant details using multiple variant id in single shopify call. Actually, I want to get price of all product variant which are listed in order using shopify call.

I know following way for get single variant detail using id

GET /admin/variants/#{variant_id}.json

/admin/variants/808950810.json

Upvotes: 10

Views: 551

Answers (2)

Benny Chan
Benny Chan

Reputation: 928

At the moment of writing, you can only retrieve all variants for a product via Shopify API.

If you're looking for retrieving unrelated, it's not possible via the API now.

But I think it's possible to submit multiple concurrent requests using a task queue or async requests. I'm also trying to speed up getting several variants at once.

Upvotes: 0

David Lazar
David Lazar

Reputation: 11427

If you want the price of all the variants of a product, make one API call, and use the product ID. You'll get back all the variants, making it trivial to iterate through them to get prices.

Upvotes: 2

Related Questions