# Carrefour (Argentina) — 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.

> Search for products across Carrefour's online store and access detailed product information, categories, and news articles about the retailer. You can also retrieve financial data about Carrefour to stay informed on company performance and market news.

**Category:** E-commerce | **Website:** [carrefour.com.ar/](https://carrefour.com.ar/) | **Docs:** [parse.bot/marketplace/ab49d5e0-b86b-43ba-9742-8360d5c641b0/carrefour-com-ar-api](https://parse.bot/marketplace/ab49d5e0-b86b-43ba-9742-8360d5c641b0/carrefour-com-ar-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-carrefour-com-ar-api-ab49d5e0/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_offers_of_the_day

Get current top-selling products from Carrefour Argentina. Returns products from the best-sellers cluster ordered by sales volume. Results span all categories (groceries, electronics, produce, etc.).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of products to return. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-carrefour-com-ar-api-ab49d5e0/get_offers_of_the_day \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>"}'
```

### list_cellphones

List available cellphones from the celulares-libres category with full specifications and promotional information. Supports pagination via page and limit parameters.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Number of products per page. |
| `page` | integer | No | Page number for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-carrefour-com-ar-api-ab49d5e0/list_cellphones \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","page":"<integer>"}'
```

### search_products

Search for products by keyword across all Carrefour Argentina categories. Returns matching products ordered by relevance. If the search engine redirects to a category (common for well-known product names like 'arroz', 'yerba'), the redirect is followed automatically and category results are returned.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of products to return. |
| `query` | string | Yes | Search keyword (e.g. 'samsung', 'arroz', 'yerba', 'coca cola'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-carrefour-com-ar-api-ab49d5e0/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","query":"<string>"}'
```
