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

> Get WordPress.org usage statistics, including WordPress core version adoption, PHP and MySQL/MariaDB version distribution, and global locale/language share.

**Category:** Developer Tools | **Website:** [wordpress.org/](https://wordpress.org/) | **Docs:** [parse.bot/marketplace/129e09dc-20ff-48ad-9979-eb93cdd4b808/wordpress-org-api](https://parse.bot/marketplace/129e09dc-20ff-48ad-9979-eb93cdd4b808/wordpress-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-wordpress-org-api-129e09dc/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_all_stats

Get all WordPress.org statistics in a single call, aggregating WordPress versions, PHP versions, MySQL/MariaDB versions, and locale distributions into one response. Saves multiple round-trips compared to calling each individual endpoint.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-wordpress-org-api-129e09dc/get_all_stats \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_locale_stats

Get WordPress locale/language distribution worldwide, showing the percentage of WordPress sites using each language. Returns an object mapping language names to their adoption percentage.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-wordpress-org-api-129e09dc/get_locale_stats \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_mysql_stats

Get MySQL/MariaDB version distribution among WordPress users, showing the percentage of sites using each database version. Returns an object mapping database version strings (prefixed with 'MySQL' or 'MariaDB') to their adoption percentage.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-wordpress-org-api-129e09dc/get_mysql_stats \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_php_stats

Get PHP version distribution among WordPress users, showing the percentage of WordPress sites running each PHP version. Returns an object mapping PHP version strings to their adoption percentage.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-wordpress-org-api-129e09dc/get_php_stats \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_wordpress_stats

Get WordPress version distribution statistics showing the percentage of WordPress sites using each version. Returns an object mapping version strings to their adoption percentage. No input parameters required.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-wordpress-org-api-129e09dc/get_wordpress_stats \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
