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/leads/api/companies/{uuid}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'https://leadgen.grinfi.io/leads/api/companies/{uuid}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Request
Find companies by LinkedIn ID, website URL, or name. Pass an array of lookup criteria — each item should contain at least one identifier.
- Productionhttps://leadgen.grinfi.io/leads/api/companies/lookup
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://leadgen.grinfi.io/leads/api/companies/lookup \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"lookups": [
{
"linkedin": "acme-inc"
},
{
"website": "acme.com"
}
]
}'[ { "uuid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890", "team_id": 0, "user_id": 0, "data_source_uuid": "string", "lead_status_uuid": "string", "name": "Acme Inc", "domain": "acme.com", "website": "https://acme.com", "ln_id": 0, "linkedin": "acme-inc", "facebook": "string", "twitter": "string", "phone": "string", "hq_raw_address": "San Francisco, CA, USA", "hq_location": [ … ], "logo_url": "string", "industry": "Technology", "employees_range": "51-200", "year_established": 2015, "about": "string", "lists": [ … ], "tags": [ … ], "status": "string", "last_enrich_at": "2019-08-24T14:15:22Z", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" } ]
Request
Retrieve all contacts belonging to the specified companies. Returns an object mapping company UUIDs to arrays of contacts.
- Productionhttps://leadgen.grinfi.io/leads/api/companies/leads
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://leadgen.grinfi.io/leads/api/companies/leads \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"uuids": [
"a1b2c3d4-e5f6-7890-abcd-ef1234567890"
]
}'{ "property1": [ { … } ], "property2": [ { … } ] }