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

> Discover ISC2 cybersecurity certifications, compare exam pricing, and search training courses to plan your professional development path. Find upcoming events and self-study resources to prepare for your desired certification.

**Category:** Education | **Website:** [isc2.org/](https://isc2.org/) | **Docs:** [parse.bot/marketplace/06bab607-36b8-4a94-951e-6790431a83a0/isc2-org-api](https://parse.bot/marketplace/06bab607-36b8-4a94-951e-6790431a83a0/isc2-org-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-isc2-org-api-06bab607/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_certification_details

Returns full details for a specific ISC2 certification identified by its slug, including the full name, marketing description, SKU, accreditation information, and experience requirement attributes.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Certification slug identifier. Valid values: cc, cissp, sscp, ccsp, cgrc, csslp, issap, issep, issmp. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-isc2-org-api-06bab607/get_certification_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### get_certifications

Returns all ISC2 cybersecurity certifications with their names, slugs, and short descriptions. The full catalog is returned in a single response with no pagination.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-isc2-org-api-06bab607/get_certifications \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_events

Returns the ISC2 events page data from the Sitecore CMS, including page metadata, navigation structure, and content components describing upcoming cybersecurity events and professional development opportunities.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-isc2-org-api-06bab607/get_events \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_exam_pricing

Returns current exam pricing for all major ISC2 certifications. Supports filtering by currency code and pricing channel. The response contains one pricing entry per certification exam.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `channel` | string | No | Channel UUID for pricing region. Defaults to US/Global Tier 1 channel. |
| `currency` | string | No | ISO currency code for pricing. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-isc2-org-api-06bab607/get_exam_pricing \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"channel":"<string>","currency":"<string>"}'
```

### get_self_study_tools

Returns the ISC2 self-study resources page data from the Sitecore CMS, including page metadata and content components describing textbooks, study guides, apps, and other exam preparation tools.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-isc2-org-api-06bab607/get_self_study_tools \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_training

Searches the ISC2 training course catalog via Algolia. Returns paginated results with course details including title, vendor, delivery type, location, dates, and price. Omitting query returns all courses.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum results per page (max 100). |
| `page` | integer | No | Zero-based page number for pagination. |
| `query` | string | No | Search keyword to filter training courses (e.g. 'CISSP', 'cloud'). Omitting returns all courses. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-isc2-org-api-06bab607/search_training \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","page":"<integer>","query":"<string>"}'
```
