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

> Perfectiongeeks provides 1 callable API endpoint through the Parse marketplace.

**Category:** Business Directories | **Website:** [www.perfectiongeeks.com/mobile-app-development/locations/mobile-app-development-company-in-cairo](https://www.perfectiongeeks.com/mobile-app-development/locations/mobile-app-development-company-in-cairo) | **Docs:** [parse.bot/marketplace/f379e957-e36f-4cac-87e5-669a1318fc67/perfectiongeeks-com-api](https://parse.bot/marketplace/f379e957-e36f-4cac-87e5-669a1318fc67/perfectiongeeks-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-perfectiongeeks-com-api-f379e957/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_location_page

Retrieves the mobile app development service page for a given city location from PerfectionGeeks. Returns the page title, description, heading, services table, FAQs, company stats, and keywords. Not all cities have dedicated pages; cities without pages return input_not_found. Known valid cities include cairo, bangalore, mumbai, and hyderabad.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `city` | string | Yes | City name for the location page (e.g. 'cairo', 'bangalore', 'mumbai'). Multi-word cities use spaces (e.g. 'new york'). The value is lowercased and spaces are replaced with hyphens to form the URL slug. |

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