# Mitomap — 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 retrieve detailed mutation data from the MITOMAP mitochondrial genome database, including RNA and coding mutations organized by position and frequency information. Access comprehensive variant information to explore mitochondrial genetic variations and their characteristics.

**Category:** Healthcare | **Website:** [mitomap.org/](https://mitomap.org/) | **Docs:** [parse.bot/marketplace/65ccfb6d-f061-4f2f-afb4-8851947018ac/mitomap-org-api](https://parse.bot/marketplace/65ccfb6d-f061-4f2f-afb4-8851947018ac/mitomap-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-mitomap-org-api-65ccfb6d/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_coding_mutations_table

Extract all coding and control region mutation data from MutationsCodingControl. Returns confirmed and reported pathogenic mutations in protein-coding genes and the control region. Contains approximately 599 mutations. No pagination — returns the complete dataset in one call.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mitomap-org-api-65ccfb6d/get_coding_mutations_table \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_genbank_frequency_info

Retrieve GenBank sequence frequency statistics and summary information. Returns a text summary describing the current GenBank dataset used for frequency calculations including dataset size, collection date, and methodology notes.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mitomap-org-api-65ccfb6d/get_genbank_frequency_info \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_rna_mutations_by_position

Search for all known variants at a specific mtDNA position. Returns variant data including locus, nucleotide change, population frequencies, and conservation scores from the MITOMAP allele search. Position must be a valid mtDNA nucleotide position (1-16569). Returns an empty variants array if no variants are found at the specified position.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `position` | string | Yes | mtDNA nucleotide position number to search for variants (1-16569). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mitomap-org-api-65ccfb6d/get_rna_mutations_by_position \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"position":"<string>"}'
```

### get_rna_mutations_table

Extract all RNA mutation data from the MutationsRNA table. Returns the full set of rRNA/tRNA mutations with associated disease, status, and frequency information. Contains approximately 489 mutations. No pagination — returns the complete dataset in one call.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mitomap-org-api-65ccfb6d/get_rna_mutations_table \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
