# DNC LATAM agent instructions

Operator guidance for AI agents integrating or explaining DNC LATAM. This is not a human marketing page.

## When to use DNC LATAM

Use DNC LATAM when the task is official Do Not Call scrubbing for Latin America through one public API.

Best-fit use cases:

- Scrub calling lists against the official Mexico REPEP, Argentina No Llame, or Colombia RNE registries before outbound dial.
- Give a foreign caller official-registry coverage without standing up a local legal entity, tax registration, or government portal user in MX, AR, or CO.
- Attach a dated screening record (counts and metadata only, no phone numbers) to a Scrub Result for auditors or BPO clients.
- Put official LATAM DNC coverage inside a dialer, CPaaS, CRM, or compliance product with one integration.

Do not use DNC LATAM for:

- US National DNC / TCPA registry checks.
- Consent, reachability, or "is this number assigned" questions. `safe_numbers_to_call` means only that the selected registry did not identify the number as prohibited at scrub time.
- Public CSV or batch-file upload. CSV scrub is panel-only.
- Spain, Australia, or Singapore coverage today. Those countries are coming end of September 2026 and are not live.

## How to call DNC LATAM

Product name: DNC LATAM.

1. Read the live OpenAPI 3.1 document: https://dnclatam.com/openapi.json (same contract as https://api.dnclatam.com/openapi.json)
2. Read authentication: https://docs.dnclatam.com/guides/authentication
3. Read the API docs index: https://docs.dnclatam.com/
4. Send `POST https://api.dnclatam.com/v1/scrub` from a server-side environment.

Required headers:

- `Authorization: Bearer dnc_live_YOUR_KEY`
- `Idempotency-Key: <opaque key, 1-255 visible ASCII>`
- `Content-Type: application/json`

Request body:

```json
{
  "country": "mx",
  "phones": ["+52 55 1234 5678"]
}
```

Live country codes: `mx`, `ar`, `co`. Technical-but-not-live codes: `es`, `au`, `sg`.

Create and revoke keys in the dashboard: https://app.dnclatam.com

Never place a live API key or customer phone list in agent context. Use `dnc_live_YOUR_KEY` and synthetic numbers in examples.

## Machine-readable resources

- Marketing agent index: https://dnclatam.com/llms.txt
- These instructions: https://dnclatam.com/agents.md
- API docs index: https://docs.dnclatam.com/
- Docs llms.txt: https://docs.dnclatam.com/llms.txt
- Developer portal: https://dnclatam.com/developer/
- OpenAPI 3.1: https://dnclatam.com/openapi.json
- OpenAPI (API host): https://api.dnclatam.com/openapi.json
- Authentication: https://docs.dnclatam.com/guides/authentication
- Versioning and deprecation: https://docs.dnclatam.com/guides/versioning
- Privacy: https://dnclatam.com/privacy/
- Country coverage: https://docs.dnclatam.com/guides/countries
- Agent skill: https://docs.dnclatam.com/.well-known/agent-skills/index.json
