# Dbugs Ptsecurity — 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 explore detailed information about cybersecurity vulnerabilities, including trending threats and researcher profiles from PT Security's comprehensive vulnerability database. Track security researcher leaderboards and get in-depth parameters for specific vulnerabilities to stay informed about the latest threats.

**Category:** Developer Tools | **Website:** [dbugs.ptsecurity.com/](https://dbugs.ptsecurity.com/) | **Docs:** [parse.bot/marketplace/fd9333fc-6c02-4398-a5c1-c366f07de4de/dbugs-ptsecurity-com-api](https://parse.bot/marketplace/fd9333fc-6c02-4398-a5c1-c366f07de4de/dbugs-ptsecurity-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-dbugs-ptsecurity-com-api-fd9333fc/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_researcher_profile

Retrieve a researcher's profile and their paginated list of discovered vulnerabilities. The name must match exactly as returned by list_researchers. Each vulnerability includes severity, locale descriptions, and impact types.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Number of vulnerabilities per page |
| `name` | string | Yes | Researcher name exactly as returned by list_researchers (e.g., 'Mat Powell', 'Will Dormann') |
| `page` | integer | No | Page number for the vulnerabilities list (1-based) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-dbugs-ptsecurity-com-api-fd9333fc/get_researcher_profile \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","name":"<string>","page":"<integer>"}'
```

### get_trends

Retrieve currently trending vulnerabilities ranked by social media activity. Each entry includes a 28-day Twitter timeline (tweet counts, audience, retweets), recent post excerpts, and vulnerability summary. No input parameters; the server determines the trending window. Typically returns 20-40 items.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-dbugs-ptsecurity-com-api-fd9333fc/get_trends \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_vulnerability_detail

Point-lookup for a single vulnerability by its PT ID. Returns full CVSS scoring vectors, multi-locale descriptions, external references, CWE IDs, researcher credits, and related identifiers. The PT ID format is 'PT-YYYY-NNNNN'.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `vulner_id` | string | Yes | Vulnerability PT ID (format: PT-YYYY-NNNNN, e.g. 'PT-2026-48572') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-dbugs-ptsecurity-com-api-fd9333fc/get_vulnerability_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"vulner_id":"<string>"}'
```

### list_researchers

Paginated leaderboard of security researchers ranked by cumulative vulnerability rating. Returns researcher name, company affiliation, total vulnerability count, total rating, and average rating per vulnerability.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Number of results per page |
| `page` | integer | No | Page number for pagination (1-based) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-dbugs-ptsecurity-com-api-fd9333fc/list_researchers \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","page":"<integer>"}'
```

### list_vulnerabilities

Full-text search over the vulnerability catalog. Returns paginated summaries with CVE IDs, severity scores, affected vendors/products, and fix/exploit status. Pagination via integer page counter; each page returns up to `limit` items. Without `fts`, returns the most recently added vulnerabilities.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `fts` | string | No | Full-text search query (e.g., 'chrome', 'CVE-2026-1731', 'privilege escalation') |
| `limit` | integer | No | Number of results per page (max observed: 100) |
| `page` | integer | No | Page number for pagination (1-based) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-dbugs-ptsecurity-com-api-fd9333fc/list_vulnerabilities \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"fts":"<string>","limit":"<integer>","page":"<integer>"}'
```
