# Clientsettings Roblox — 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.

> Check your Roblox client version and retrieve active feature flags and settings to understand which experimental features are enabled for your account. Get your assigned user channel to see how Roblox is personalizing your experience across different feature rollouts.

**Category:** Developer Tools | **Website:** [clientsettings.roblox.com/v2/client-version/WindowsPlayer/channel/LIVE](https://clientsettings.roblox.com/v2/client-version/WindowsPlayer/channel/LIVE) | **Docs:** [parse.bot/marketplace/3298c5d2-eb1f-45f9-91b1-12bd43bd1d2e/clientsettings-roblox-com-api](https://parse.bot/marketplace/3298c5d2-eb1f-45f9-91b1-12bd43bd1d2e/clientsettings-roblox-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-clientsettings-roblox-com-api-3298c5d2/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_application_settings

Get the full set of application settings (feature flags, configuration values) for a specific Roblox application. Returns a large dictionary of key-value pairs representing all active flags and their values. Typical responses contain thousands of entries covering FFlags, DFFlags, FInts, DFInts, FStrings, and DFStrings.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `application_name` | string | No | The application name. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-clientsettings-roblox-com-api-3298c5d2/get_application_settings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"application_name":"<string>"}'
```

### get_client_version

Get the current client version, version upload hash, and bootstrapper version for a specific Roblox binary type and channel. Each binary type (WindowsPlayer, MacPlayer, WindowsStudio64, MacStudio) has its own independent version track. Non-LIVE channels may return different versions during staged rollouts.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `binary_type` | string | No | The Roblox binary type. |
| `channel` | string | No | The deployment channel name. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-clientsettings-roblox-com-api-3298c5d2/get_client_version \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"binary_type":"<string>","channel":"<string>"}'
```

### get_user_channel

Get the current user's assigned deployment channel. Returns the channel name, which is typically LIVE for unauthenticated requests. Authenticated users may be assigned to different channels for staged feature rollouts.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-clientsettings-roblox-com-api-3298c5d2/get_user_channel \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
