# Dezacalidad — 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.

> Access data from dezacalidad.es.

**Category:** Food & Dining | **Website:** [www.dezacalidad.es/ofertas-folletos/](https://www.dezacalidad.es/ofertas-folletos/) | **Docs:** [parse.bot/marketplace/3a70e814-7878-4787-8aee-d8f42867b57a/dezacalidad-es-api](https://parse.bot/marketplace/3a70e814-7878-4787-8aee-d8f42867b57a/dezacalidad-es-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-dezacalidad-es-api-3a70e814/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_current_offers

Retrieves current promotional offers (products marked 'Precio naranja') from Deza Calidad. Each offer includes product name, labels, promotion status, and which stores carry it. Results are paginated server-side.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of offers to return per request (1-60). |
| `page` | integer | No | Page number for paginated results (1-based). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-dezacalidad-es-api-3a70e814/get_current_offers \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","page":"<integer>"}'
```

### get_product_detail

Searches the Deza Calidad product catalog by name and returns matching products with their labels, promotion status, and store availability. Products are identified by name (no individual product URLs or numeric IDs exist). Returns up to 10 matching products.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_name` | string | Yes | Product name or partial name to search for (e.g. 'Fino spritz ALVEAR'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-dezacalidad-es-api-3a70e814/get_product_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"product_name":"<string>"}'
```

### get_stores

Retrieves all Deza Calidad store locations with address, locality, postal code, and phone. Each store is identified by its URL slug. All stores returned in a single response (typically ~13).

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-dezacalidad-es-api-3a70e814/get_stores \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
