# Smiles — 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 available flights on Smiles and compare fares across one-way and round-trip routes. Retrieve pricing for standard Smiles, Clube Smiles, and Smiles+Money fare types, including miles requirements, cash portions, and applicable taxes.

**Category:** Travel | **Website:** [smiles.com.br/](https://smiles.com.br/) | **Docs:** [parse.bot/marketplace/fce31e86-a6fc-479a-ae4e-5c054b68c2e5/smiles-com-br-api](https://parse.bot/marketplace/fce31e86-a6fc-479a-ae4e-5c054b68c2e5/smiles-com-br-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-smiles-com-br-api-fce31e86/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_flights

Search for available flights using Smiles miles. Returns flight options with pricing across multiple fare types (Smiles, Clube Smiles, Smiles+Money, Smiles+Money Club). Supports both one-way and round-trip searches. Results include departure/arrival times, duration, stops, airline, seat availability, and per-fare pricing (miles, money, tax). One-way returns only SEGMENT_1 flights; round-trip returns both SEGMENT_1 (outbound) and SEGMENT_2 (return) flights.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `adults` | integer | No | Number of adult passengers |
| `children` | integer | No | Number of child passengers |
| `departure_date` | string | Yes | Departure date in YYYY-MM-DD format |
| `destination` | string | Yes | Destination airport 3-letter IATA code (e.g. MIA, GIG, LIS) |
| `infants` | integer | No | Number of infant passengers |
| `origin` | string | Yes | Origin airport 3-letter IATA code (e.g. GRU, CGH, MIA) |
| `return_date` | string | No | Return date in YYYY-MM-DD format. Required when trip_type is 2 (round-trip). |
| `trip_type` | integer | No | Trip type: 1 for one-way, 2 for round-trip |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-smiles-com-br-api-fce31e86/search_flights \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"adults":"<integer>","children":"<integer>","departure_date":"<string>","destination":"<string>","infants":"<integer>","origin":"<string>","return_date":"<string>","trip_type":"<integer>"}'
```
