# ICA — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Find ICA stores near you with their contact information, addresses, and opening hours, plus browse current national offers across all locations. Get real-time details about any ICA store to plan your shopping trips efficiently.

**Category:** Food & Dining | **Website:** [ica.se/](https://ica.se/) | **Docs:** [parse.bot/marketplace/18624665-9654-43b1-b8e7-7bbf4a03b12b/ica-se-api](https://parse.bot/marketplace/18624665-9654-43b1-b8e7-7bbf4a03b12b/ica-se-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-ica-se-api-18624665/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_national_offers

Get current national weekly deals and offers available across all ICA stores. Returns detailed offer information including pricing, product details, validity dates, and product images. No parameters required; always returns the current week's active offers.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ica-se-api-18624665/get_national_offers \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_store_info

Get detailed info for specific stores by numeric store ID. Returns extended details including visiting address, opening hours with deviations, services with opening hours, and store URLs. Use storeId values from list_stores results. Accepts one or more comma-separated IDs; unresolvable IDs are reported in errorMessages.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `store_ids` | string | Yes | Comma-separated numeric store IDs from list_stores results (e.g. '2527' or '2527,1235'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ica-se-api-18624665/get_store_info \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"store_ids":"<string>"}'
```

### list_stores

Retrieve a paginated list of all ICA stores with basic info including store name, email address, phone number, address, opening hours, and services. Paginated via skip/take; each page returns up to `take` stores sorted alphabetically. The total catalog is ~1300 stores.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `skip` | integer | No | Number of stores to skip for pagination. |
| `take` | integer | No | Number of stores to return per page. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ica-se-api-18624665/list_stores \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"skip":"<integer>","take":"<integer>"}'
```
