# Nortonabrasives — 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 Norton Abrasives UK's complete abrasive product catalog to find specifications, part numbers, and category details for the tools you need. Access individual product information to compare options and identify the right abrasive solution for your project.

**Category:** E-commerce | **Website:** [www.nortonabrasives.com/en-gb/product/sanding-discs/flap-discs](https://www.nortonabrasives.com/en-gb/product/sanding-discs/flap-discs) | **Docs:** [parse.bot/marketplace/4a0b6013-f15f-47ed-b9d0-d0d512d25ac1/nortonabrasives-com-api](https://parse.bot/marketplace/4a0b6013-f15f-47ed-b9d0-d0d512d25ac1/nortonabrasives-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-nortonabrasives-com-api-4a0b6013/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product_details

Fetch full specifications for a Norton Abrasives product family by its URL slug. Returns product name, categories, description, specification table headers, and all SKU variants with their individual specs (part number, diameter, bore, grit size, abrasive material, etc.). The table columns vary by product type. Each product family contains multiple variants differentiated by size, grit, and material.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Product URL slug from list_products results (e.g. 'quantum-flap-discs', 'vulcan-zirconia-flap-discs'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-nortonabrasives-com-api-4a0b6013/get_product_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### list_products

Paginate through the full Norton Abrasives UK product catalog. Returns product families (each containing multiple SKU variants) with name, slug, URL, and quality tier. Products span all categories (flap discs, cutting wheels, grinding wheels, sanding discs, belts, etc.). Use the slug from results to fetch full specifications via get_product_details. 23 products per page, 0-indexed pagination.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Zero-indexed page number for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-nortonabrasives-com-api-4a0b6013/list_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>"}'
```
