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

> Convert romanized Malayalam (Manglish) text into proper Malayalam script with instant results and alternative spelling options. Perfect for quickly transforming casual typed Malayalam into its authentic written form.

**Category:** Developer Tools | **Website:** [www.manglish.app/](https://www.manglish.app/) | **Docs:** [parse.bot/marketplace/ea7a8401-6fbf-4c65-8a9c-5c70f0c67a7c/manglish-app-api](https://parse.bot/marketplace/ea7a8401-6fbf-4c65-8a9c-5c70f0c67a7c/manglish-app-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-manglish-app-api-ea7a8401/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### transliterate

Transliterates Manglish (romanized Malayalam) text to Malayalam script. Returns the top transliteration and up to num_suggestions alternative candidates. Supports single words and multi-word phrases. One upstream round-trip per call.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `num_suggestions` | integer | No | Number of transliteration suggestions to return (1–10). |
| `text` | string | Yes | Manglish text to transliterate (e.g. 'ente peru ravi', 'nanni', 'kerala'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-manglish-app-api-ea7a8401/transliterate \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"num_suggestions":"<integer>","text":"<string>"}'
```
