# GET /api/public/v1/products/{category}

> The public product catalogue

- Group: meta
- Tier: R
- Required scope: none (public)
- Docs: https://api.inleed.com/reference/meta/category

## Description

Returns each category with its products and a "from" price, plus the featured domains. Filter with the path (`/products/hosting`) or `?category=`; `all` returns everything.

## Path parameters

- `category` — string (required)

## Query parameters

- `category` — enum. One of hosting, servers, email, domains, all, null.
- `currency` — enum. One of SEK, EUR, null.
- `locale` — enum. One of sv, en, null.

## Request

```bash
curl -X GET "https://mcp.inleed.com/api/public/v1/products/example.se?category=example.se&currency=SEK&locale=sv"
```

## Response · 200

```json
{
  "currency": "SEK",
  "locale": "example.se",
  "vatRate": 1,
  "vatNote": "Resolved via the owning account.",
  "categories": [
    "example.se"
  ]
}
```

## Errors

- **404** No such resource for this account. — codes: not_found
- **422** Validation error — codes: validation_failed
- **429** The rate limit for this token is exhausted. See `Retry-After`. — codes: rate_limited
- **500** Something went wrong on our side. The failure is logged against `requestId`. — codes: internal_error

## Related

- GET /api/public/v1/products — https://api.inleed.com/reference/meta/list-index
- GET /api/public/v1/products/compare — https://api.inleed.com/reference/meta/compare
- GET /api/public/v1/products/item — https://api.inleed.com/reference/meta/item
- GET /api/public/v1/products/domains/{tld} — https://api.inleed.com/reference/meta/tld

