# Accaglobal — 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 accaglobal.com.

**Category:** Education | **Website:** [www.accaglobal.com/gb/en/student/exam-support-resources.html](https://www.accaglobal.com/gb/en/student/exam-support-resources.html) | **Docs:** [parse.bot/marketplace/d7de0895-dcca-4c78-92b5-4a382a28f5da/accaglobal-com-api](https://parse.bot/marketplace/d7de0895-dcca-4c78-92b5-4a382a28f5da/accaglobal-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-accaglobal-com-api-d7de0895/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_exam_resources

Retrieves all study resources for a specific ACCA exam, organized by study phase (Getting started, Learning and revision). Each resource includes its title, description, format availability (computer-based, paper-based, video), and content path. Also returns the exam title and description.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `exam_path` | string | Yes | Path identifier for the exam, as returned by list_exams (e.g. '/gb/en/student/exam-support-resources/fundamentals-exams-study-resources/f2'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-accaglobal-com-api-d7de0895/get_exam_resources \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"exam_path":"<string>"}'
```

### get_exam_syllabus

Retrieves syllabus metadata and PDF download URLs for a specific ACCA exam. Returns the syllabus page URL and links to downloadable syllabus and study guide PDF documents with their titles and applicable date ranges.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `exam_path` | string | Yes | Path identifier for the exam, as returned by list_exams (e.g. '/gb/en/student/exam-support-resources/fundamentals-exams-study-resources/f2'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-accaglobal-com-api-d7de0895/get_exam_syllabus \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"exam_path":"<string>"}'
```

### list_exams

Lists all ACCA exams with their qualification categories and hierarchy levels. Each exam includes its title, path identifier, qualification group, and level within the ACCA structure. Results can be filtered by qualification or level. The path returned for each exam serves as the identifier for get_exam_resources and get_exam_syllabus.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `qualification` | string | No | Filter exams by qualification or level. Omitting returns all exams. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-accaglobal-com-api-d7de0895/list_exams \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"qualification":"<string>"}'
```
