# Booksy (Spanish) — 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 es.booksy.com.

**Category:** Business Directories | **Website:** [es.booksy.com/es-es/1984_brooklyn-barber-shop-av-puerto_barberia_58087_valencia](https://es.booksy.com/es-es/1984_brooklyn-barber-shop-av-puerto_barberia_58087_valencia) | **Docs:** [parse.bot/marketplace/73df7a5f-f1d6-402a-a738-982ee9e3f401/es-booksy-com-api](https://parse.bot/marketplace/73df7a5f-f1d6-402a-a738-982ee9e3f401/es-booksy-com-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-es-booksy-com-api-73df7a5f/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_business_info

Retrieve detailed information about a business on Booksy Spain, including name, address, rating, reviews count, services with pricing and duration, staff members, and opening hours.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `business_id` | string | Yes | Numeric business identifier from Booksy (e.g. '8903'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-es-booksy-com-api-73df7a5f/get_business_info \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"business_id":"<string>"}'
```

### get_time_slots

Retrieve available appointment time slots for a specific service at a Booksy Spain business on a given date. Returns combined availability and per-staff breakdowns.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `business_id` | string | Yes | Numeric business identifier from Booksy (e.g. '8903'). |
| `date` | string | Yes | Date to check availability, ISO format YYYY-MM-DD. |
| `service_variant_id` | string | Yes | Numeric service variant ID from get_business_info services[*].variant_id (e.g. '611328'). |
| `staffer_id` | string | No | Numeric staff member ID from get_business_info staff[*].id. Omit or use '-1' for any available staffer. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-es-booksy-com-api-73df7a5f/get_time_slots \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"business_id":"<string>","date":"<string>","service_variant_id":"<string>","staffer_id":"<string>"}'
```
