# Alfabb — 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.

> Search and browse Alfa Romeo enthusiast discussions on AlfaBB Forum, finding specific threads and retrieving detailed conversation content from the community. Connect with fellow Alfa Romeo owners and access technical advice, restoration tips, and model-specific discussions all in one place.

**Category:** Automotive | **Website:** [www.alfabb.com/](https://www.alfabb.com/) | **Docs:** [parse.bot/marketplace/8effa142-fb05-4e9b-b03c-e0746b82fecc/alfabb-com-api](https://parse.bot/marketplace/8effa142-fb05-4e9b-b03c-e0746b82fecc/alfabb-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-alfabb-com-api-8effa142/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_thread

Retrieve full posts of a forum thread by its numeric thread ID. Returns all posts on the requested page including author, date, content text, and reactions. Threads with many posts are paginated with up to 24 posts per page. The thread_id is obtainable from search_threads results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for threads with multiple pages of posts. |
| `thread_id` | string | Yes | Numeric thread ID (e.g. '750874'). Obtainable from search_threads results in the thread_id field. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-alfabb-com-api-8effa142/get_thread \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","thread_id":"<string>"}'
```

### search_threads

Full-text search over AlfaBB forum threads. `query` matches thread titles by default; set `title_only` to 'false' to search full post content. Returns up to 20 results per page ordered by relevance. Each result includes thread metadata (title, forum, snippet, reply count, views, author, date) and a `thread_id` usable with get_thread.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for paginated results. Each page returns up to 20 results. |
| `query` | string | Yes | Search keywords to find matching forum threads. |
| `title_only` | string | No | Whether to search only thread titles. Accepts 'true' or 'false'. When 'false', searches full post content. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-alfabb-com-api-8effa142/search_threads \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","query":"<string>","title_only":"<string>"}'
```
