# Kohl's Stores API (https://www.socialcrawl.dev/platforms/kohls/stores) > Returns Kohl's stores within a radius of a latitude,longitude pair, each with store id, name, street address, city, state, postcode, coordinates, and the store page URL. Pass location_coordinate as lat,lng (40.758,-73.9855) or latitude and longitude separately. radius is miles, 1 to 100, default 25. A radius with no stores returns an empty list and is not billed. latitude and longitude are both required; omitting either is a 400 before billing. TL;DR: `GET /v1/kohls/stores` 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 | | --- | --- | --- | | `location_coordinate` | no | Latitude and longitude as lat,lng, for example 40.758,-73.9855. | | `latitude` | no | Latitude of the search centre, for example 40.758. | | `longitude` | no | Longitude of the search centre, for example -73.9855. | | `radius` | no | Search radius in miles, 1 to 100. Default 25. | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/kohls/stores" \ -H "x-api-key: sc_YOUR_API_KEY" ``` See the full Kohl's API: https://www.socialcrawl.dev/platforms/kohls ## 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