# Sephora Availability API (https://www.socialcrawl.dev/platforms/sephora/availability) > Returns store-level stock for one Sephora sku near a coordinate. Each store has id, name, address, distance, and an in-stock flag. Pass the sku from GET /v1/sephora/product (currentSku.skuId) plus a lat,lng. Default radius is 50 miles. TL;DR: `GET /v1/sephora/availability` costs 5 credits per call and returns SocialCrawl's unified JSON schema. Single x-api-key auth, 100 free credits on signup. ## Parameters | Parameter | Required | Description | | --- | --- | --- | | `sku` | yes | Sephora sku id, for example 2210581. Comes back on product detail as currentSku.skuId. | | `latitude` | no | Latitude. Use with longitude when you do not pass location_coordinate. | | `longitude` | no | Longitude. Use with latitude when you do not pass location_coordinate. | | `location_coordinate` | no | Latitude and longitude as lat,lng, for example 37.4418834,-122.1430195. | | `radius` | no | Search radius in miles, 1 to 100. Default 50. | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/sephora/availability?sku=2210581" \ -H "x-api-key: sc_YOUR_API_KEY" ``` See the full Sephora API: https://www.socialcrawl.dev/platforms/sephora ## Pricing - Standard endpoints: 1 credit per call - Advanced endpoints: 5 credits per call - Premium endpoints: 10 credits per call - 100 free credits on signup, no credit card required. Cached responses cost 0 credits. Credit packs never expire. - Full pricing: https://www.socialcrawl.dev/pricing