# Pipedrive

> Manage Pipedrive CRM — persons, organizations, deals, and activities via the REST API.

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

---


# Pipedrive

Manage persons, organizations, deals, and activities.

## Environment Variables

- `PIPEDRIVE_API_TOKEN` - API token
- `PIPEDRIVE_DOMAIN` - Company domain (e.g. `mycompany`)

## List deals

```bash
curl -s "https://$PIPEDRIVE_DOMAIN.pipedrive.com/api/v1/deals?api_token=$PIPEDRIVE_API_TOKEN&limit=10" | jq '.data[] | {id, title, value, currency, status}'
```

## List persons

```bash
curl -s "https://$PIPEDRIVE_DOMAIN.pipedrive.com/api/v1/persons?api_token=$PIPEDRIVE_API_TOKEN&limit=10" | jq '.data[] | {id, name, email: .email[0].value, phone: .phone[0].value}'
```

## Create deal

```bash
curl -s -X POST "https://$PIPEDRIVE_DOMAIN.pipedrive.com/api/v1/deals?api_token=$PIPEDRIVE_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"title":"New Deal","value":5000,"currency":"USD"}' | jq '.data | {id, title, value}'
```

## Notes

- Always confirm before creating or updating records.

