# Outreach

> Manage sales engagement via Outreach API. Create sequences, manage prospects, and track activities.

- Skill: `modbender/outreach` (Agent Skill)
- Install (CLI): `npx skillmds@latest add modbender/outreach`
- Raw SKILL.md: https://api.skillmd.com/api/skills/modbender/outreach/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Integrations & APIs
- Author: modbender (https://skillmd.com/u/modbender)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/modbender/outreach

---

# Outreach
Sales engagement platform.
## Environment
```bash
export OUTREACH_ACCESS_TOKEN="xxxxxxxxxx"
```
## List Prospects
```bash
curl "https://api.outreach.io/api/v2/prospects" \
  -H "Authorization: Bearer $OUTREACH_ACCESS_TOKEN" \
  -H "Content-Type: application/vnd.api+json"
```
## Create Prospect
```bash
curl -X POST "https://api.outreach.io/api/v2/prospects" \
  -H "Authorization: Bearer $OUTREACH_ACCESS_TOKEN" \
  -H "Content-Type: application/vnd.api+json" \
  -d '{"data": {"type": "prospect", "attributes": {"firstName": "John", "lastName": "Doe", "emails": ["john@example.com"]}}}'
```
## List Sequences
```bash
curl "https://api.outreach.io/api/v2/sequences" \
  -H "Authorization: Bearer $OUTREACH_ACCESS_TOKEN"
```
## Add to Sequence
```bash
curl -X POST "https://api.outreach.io/api/v2/sequenceStates" \
  -H "Authorization: Bearer $OUTREACH_ACCESS_TOKEN" \
  -H "Content-Type: application/vnd.api+json" \
  -d '{"data": {"type": "sequenceState", "relationships": {"prospect": {"data": {"type": "prospect", "id": "123"}}, "sequence": {"data": {"type": "sequence", "id": "456"}}}}}'
```
## Links
- Dashboard: https://app.outreach.io
- Docs: https://api.outreach.io/api/v2/docs

