# Notte — 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 notte.cc.

**Category:** Developer Tools | **Website:** [notte.cc/](https://notte.cc/) | **Docs:** [parse.bot/marketplace/e2464f3c-49b9-427b-a9a8-a92efcf482d3/notte-cc-api](https://parse.bot/marketplace/e2464f3c-49b9-427b-a9a8-a92efcf482d3/notte-cc-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-notte-cc-api-e2464f3c/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_pricing

Retrieves Notte's complete pricing information including subscription plans (Free, Developer, Startup, Enterprise), per-unit usage rates, and per-plan rate limits. Returns a single snapshot of the current pricing page.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-notte-cc-api-e2464f3c/get_pricing \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### list_blog_posts

Lists blog posts from the Notte blog. Supports filtering by category. Returns posts in reverse-chronological order with title, slug, date, category, excerpt, and author.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Filter posts by category. Omitted returns the most recent posts across all categories. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-notte-cc-api-e2464f3c/list_blog_posts \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>"}'
```
