# Shop Eu Palaceskateboards — 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.

> Browse Palace Skateboards' EU shop to discover all available products, filter by category, and access detailed product information including technical specs and size charts. Get real-time inventory data to find exactly what you're looking for across their complete product catalog.

**Category:** E-commerce | **Website:** [shop-eu.palaceskateboards.com/](https://shop-eu.palaceskateboards.com/) | **Docs:** [parse.bot/marketplace/56819c9a-944b-4a3c-9411-1e412404dc92/shop-eu-palaceskateboards-com-api](https://parse.bot/marketplace/56819c9a-944b-4a3c-9411-1e412404dc92/shop-eu-palaceskateboards-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-shop-eu-palaceskateboards-com-api-56819c9a/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_all_categories

Extract all available category names and slugs from the Palace EU shop. Each category slug can be passed to get_products_by_category.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-shop-eu-palaceskateboards-com-api-56819c9a/get_all_categories \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_all_products

Get all products from the featured/default collection. Returns product names, prices, availability, and handles. Equivalent to fetching the 'all' category.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-shop-eu-palaceskateboards-com-api-56819c9a/get_all_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_product_details

Get detailed information for a single product including description, technical details, available sizes with prices, images, and size chart measurements. The handle parameter comes from product listings (get_all_products or get_products_by_category).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `handle` | string | Yes | Product handle from get_all_products or get_products_by_category results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-shop-eu-palaceskateboards-com-api-56819c9a/get_product_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"handle":"<string>"}'
```

### get_products_by_category

Get products for a specific category. Returns product names, prices, availability, and handles for the given category slug. Each product includes a handle usable with get_product_details.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | Yes | Category slug identifying the collection to fetch. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-shop-eu-palaceskateboards-com-api-56819c9a/get_products_by_category \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>"}'
```
