# POST /lead-gen/results

**Resource:** [Lead Gen Initiatives](./lead-gen-initiatives.md)  
**MCP tool:** `lead_gen_create_result`  
**Scopes:** `lead-gen:write`  
**Write operation:** yes

Manually insert a lead_gen_result (hand-curated lead, CSV import, smoke fixture).

## Parameters

| Name | In | Type | Required | Description |
|------|----|------|----------|-------------|
| `business_name` | body | string | yes |  |
| `email` | body | string | no |  |
| `phone` | body | string | no |  |
| `website` | body | string | no |  |
| `city` | body | string | no |  |
| `state` | body | string | no |  |
| `country_code` | body | string | no |  |
| `search_id` | body | string | no | Optional — if omitted a wrapper search is created |
| `require_approval` | body | boolean | no | Optional. Set true to route this write into the approval queue for human review instead of executing it immediately (returns 202 + an approval_id). Works even when your key/token has permission to execute directly. |

## Request example

```bash
curl -X POST   "https://api.trustpager.com/functions/v1/api/v1/lead-gen/results"   -H "Authorization: Bearer YOUR_API_KEY"   -H "Content-Type: application/json"   -d '{"business_name":"...","email":"...","phone":"..."}'
```

---
Base URL: `https://api.trustpager.com/functions/v1/api/v1` — Auth: `Authorization: Bearer YOUR_API_KEY`