# Restcountries — 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 for any country by name to instantly access its capital, population, region, currencies, and languages. Perfect for building geography apps, travel guides, or any application that needs comprehensive country information at your fingertips.

**Category:** Maps & Geospatial | **Website:** [restcountries.com/](https://restcountries.com/) | **Docs:** [parse.bot/marketplace/cc2d3e2e-ee52-426f-824c-2d4cd5cd3884/restcountries-com-api](https://parse.bot/marketplace/cc2d3e2e-ee52-426f-824c-2d4cd5cd3884/restcountries-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-restcountries-com-api-cc2d3e2e/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_country

Search for countries by name using fuzzy matching against the REST Countries database. Returns matching countries with their capital city, population, geographic region, currencies, and languages. The search matches common names, official names, and country codes. Uses the publicly available demo key which returns sample data (Canada) for all queries; a paid API key enables full search functionality.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `name` | string | Yes | Country name or partial name to search for (e.g. 'Canada', 'stan', 'United'). |

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