# Phone Intelligence

> **You are on:** `https://beta-api.paywithlocus.com/api` | [llms.txt](https://beta.paywithlocus.com/llms.txt)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API |
> |---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com |
> | Beta | beta.paywithlocus.com | beta-api.paywithlocus.com |
> | Stage | stage.paywithlocus.com | stage-api.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Validate and get carrier info for phone numbers worldwide.

**Category:** Validation | **Website:** [www.abstractapi.com/api/phone-validation-api](https://www.abstractapi.com/api/phone-validation-api) | **Docs:** [docs.abstractapi.com/phone-intelligence](https://docs.abstractapi.com/phone-intelligence)

## Access Methods

| Method | Base URL | Auth |
|--------|----------|------|
| **MPP (Tempo)** | `https://abstract-phone-intelligence.mpp.paywithlocus.com/abstract-phone-intelligence/` | HTTP 402 auto-payment |
| **Wrapped API** | `https://beta-api.paywithlocus.com/api/wrapped/abstract-phone-intelligence/` | `Authorization: Bearer <LOCUS_API_KEY>` |

**OpenAPI discovery:** `GET https://abstract-phone-intelligence.mpp.paywithlocus.com/openapi.json`

## Endpoints

### Lookup

Get carrier, type, and validity info for a phone number.

**Estimated cost:** $0.006

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `phone` | string | Yes | Phone number to validate |
| `country` | string | No | ISO 3166-1 alpha-2 country code |

```bash
curl -X POST https://abstract-phone-intelligence.mpp.paywithlocus.com/abstract-phone-intelligence/lookup \
  -H "Content-Type: application/json" \
  -d '{"phone":"<string>","country":"<string>"}'
```
