Manage your CRM contacts (leads). Search, create, update, and organize contacts across lists and pipeline stages.
Grinfi.io API (2.0.0)
Complete API reference for Grinfi.io — the all-in-one LinkedIn & email outreach platform. Use this API to manage your CRM contacts, run outreach automations, send messages, and integrate Grinfi with your own tools.
All requests require a Bearer token in the Authorization header.
- Log in at leadgen.grinfi.io
- Go to Settings → API Keys
- Copy your key and pass it as:
Authorization: Bearer YOUR_API_KEY
List endpoints support limit (default 20) and offset (default 0) query parameters. Responses include total count and has_more boolean.
Most list endpoints accept a filter object. Supported value types: | Type | Example | SQL equivalent | |------|---------|----------------| | Scalar | "status": "ok" | = 'ok' | | Array | "status": ["ok", "pending"] | IN ('ok', 'pending') | | Object | "created_at": {">=": "2024-01-01"} | >= '2024-01-01' | | "is_null" | "email": "is_null" | IS NULL | | "is_not_null" | "email": "is_not_null" | IS NOT NULL | Supported operators: =, !=, <, <=, >, >=, <>
- Productionhttps://leadgen.grinfi.io/emails/api/mailboxes
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://leadgen.grinfi.io/emails/api/mailboxes?limit=20&offset=0&order_field=created_at&order_type=asc&q=string' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'{ "data": [ { … } ], "limit": 0, "offset": 0, "total": 0 }
- Productionhttps://leadgen.grinfi.io/emails/api/mailboxes
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://leadgen.grinfi.io/emails/api/mailboxes \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"email": "outreach@company.com",
"sender_name": "John from Company",
"sender_profile_uuid": "string",
"provider": "string",
"connection_settings": {
"smtp_host": "string",
"smtp_port": 0,
"smtp_username": "string",
"smtp_password": "string",
"imap_host": "string",
"imap_port": 0,
"imap_username": "string",
"imap_password": "string"
},
"automation_daily_limit": 50,
"automation_task_interval": 120
}'{ "uuid": "string", "team_id": 0, "user_id": 0, "sender_profile_uuid": "string", "email": "outreach@company.com", "sender_name": "John from Company", "provider": "string", "status": "string", "automation_daily_limit": 50, "automation_task_interval": 120, "custom_tracking_domain_uuid": "string", "connection_settings": {}, "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }
- Productionhttps://leadgen.grinfi.io/emails/api/mailboxes/{uuid}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://leadgen.grinfi.io/emails/api/mailboxes/{uuid}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'{ "uuid": "string", "team_id": 0, "user_id": 0, "sender_profile_uuid": "string", "email": "outreach@company.com", "sender_name": "John from Company", "provider": "string", "status": "string", "automation_daily_limit": 50, "automation_task_interval": 120, "custom_tracking_domain_uuid": "string", "connection_settings": {}, "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }