# Sporcle — 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 Sporcle quizzes by slug, keyword search, or category. Retrieve quiz titles, questions, multiple-choice answers, hints, user ratings, and average scores.

**Category:** Education | **Website:** [sporcle.com/](https://sporcle.com/) | **Docs:** [parse.bot/marketplace/5d0851c7-01d2-4e82-a9f1-6c938a21f194/sporcle-com-api](https://parse.bot/marketplace/5d0851c7-01d2-4e82-a9f1-6c938a21f194/sporcle-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-sporcle-com-api-5d0851c7/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_category_quizzes

Get quizzes in a specific category. Returns a list of quizzes with their titles and slugs for the given category page. Categories include geography, science, entertainment, history, sports, and more.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | Yes | Category slug (e.g. 'geography', 'science', 'entertainment', 'history', 'sports') |
| `page` | integer | No | Page number for pagination |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-sporcle-com-api-5d0851c7/get_category_quizzes \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","page":"<integer>"}'
```

### get_quiz

Extract full details for a given quiz slug including title, description, questions with answers and hints, rating, and average score. The slug can be a simple name like 'world' or a user-prefixed path like 'Matt/find_the_states'. Returns one Quiz resource with all questions decoded. For image-based quizzes, each question includes its associated image URL.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | The quiz slug or path part after /games/ (e.g. 'world', 'states', 'Matt/find_the_states') |

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

### search_quizzes

Search for quizzes by keyword. Returns a paginated list of matching quizzes with their titles, slugs, and descriptions. Each page contains up to 20 results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination |
| `query` | string | Yes | Search keyword |

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