# Namemc (French) — 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.

> Look up Minecraft player profiles with their name history and skin gallery, search for trending skins, check server statistics, and verify if usernames are available. Get comprehensive data about any Minecraft player and discover popular skins across the community.

**Category:** Entertainment | **Website:** [fr.namemc.com/](https://fr.namemc.com/) | **Docs:** [parse.bot/marketplace/58ec6ba0-6ec6-4b20-983d-8efe67add65b/fr-namemc-com-api](https://parse.bot/marketplace/58ec6ba0-6ec6-4b20-983d-8efe67add65b/fr-namemc-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-fr-namemc-com-api-58ec6ba0/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_name_availability

Check the availability and popularity of a Minecraft username. Returns whether the name is currently taken and its monthly search count on NameMC. Status is 'Unavailable' for taken names, 'Available' for claimable names, or 'Unknown' if the site cannot determine availability.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `name` | string | Yes | Minecraft username to check |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fr-namemc-com-api-58ec6ba0/get_name_availability \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"name":"<string>"}'
```

### get_player_profile

Retrieve a Minecraft player's profile information including name history, skins, and monthly views. Accepts a username, UUID, or NameMC profile ID (e.g. 'Notch', 'Dream.1'). Returns the player's current name, UUID, skin gallery, name change history, and view statistics. A single fetch per player; skin thumbnails and 3D renders are pre-built URLs.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `identifier` | string | Yes | Minecraft username, UUID, or NameMC profile ID (e.g. 'Notch', 'Dream.1') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fr-namemc-com-api-58ec6ba0/get_player_profile \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"identifier":"<string>"}'
```

### get_trending_skins

Retrieve Minecraft skins by category with pagination support. Returns skin thumbnails and 3D body render URLs. Categories correspond to different sort/filter views on the NameMC skin gallery. Each page typically contains up to 48 skins.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Skin category: 'trending', 'new', 'top', 'random' |
| `page` | integer | No | Page number for pagination (1-based) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fr-namemc-com-api-58ec6ba0/get_trending_skins \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","page":"<integer>"}'
```

### search_players

Search for Minecraft players by username or partial name. If the query exactly matches a known username, the site redirects to the player profile and the result contains a single direct-match entry. For partial matches, returns a list of matching players. Each result includes the player's display name and NameMC profile identifier suitable for passing to get_player_profile.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search keyword (username or partial name) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fr-namemc-com-api-58ec6ba0/search_players \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```
