# GET /api/public/v1/products/domains

> Registration, renewal and transfer price per TLD

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

## Description

Returns one row per TLD. Pass `tlds` (bare, without a dot) for specific ones or omit for the featured list.

## Query parameters

- `tlds[]` — string[]
- `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/domains?tlds[]=example.se&currency=SEK&locale=sv"
```

## Response · 200

```json
{
  "currency": "SEK",
  "locale": "example.se",
  "vatRate": 1,
  "tlds": [
    {
      "tld": "example.se",
      "currency": "SEK",
      "register": {
        "amount": "example.se",
        "currency": "SEK",
        "formatted": "example.se"
      },
      "renew": {
        "amount": "example.se",
        "currency": "SEK",
        "formatted": "example.se"
      },
      "transfer": {
        "amount": "example.se",
        "currency": "SEK",
        "formatted": "example.se"
      },
      "transferFree": true
    }
  ]
}
```

## Errors

- **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/domains/{tld} — https://api.inleed.com/reference/meta/tld
- GET /api/public/v1/products — https://api.inleed.com/reference/meta/list-index
- GET /api/public/v1/products/{category} — https://api.inleed.com/reference/meta/category
- GET /api/public/v1/products/compare — https://api.inleed.com/reference/meta/compare

