Welcome to Bullio's API! You can use this API to access all our API endpoints, such as the Person API to look up email addresses, or the Company API to look up company information related to a domain name.
The main endpoint:
https://bullio.pro/api/v1
The required parameter:
api_key
Enrich contacts and companies with the most relevant data from Linkedin.
Scrupp provides the most comprehensive information about contact and companies you can use in your campaigns. The full data you can see in Scrupp report.
Returns result from email Database without deliverable proof
GET /email/get
{
state: true,
email: john@apple.com,
remain_credits: 32001,
credits_consumed: 1
}
Request email finding and verification
Parameter | Type | Description |
---|---|---|
first_name | string | Contact's first name |
last_name | string | Contact's last name |
domain | string | Company domain |
GET /email/get/verified
{
state: true,
id: 1
}
Parameter | Type | Description |
---|---|---|
id | string | The unique ID for a single email finding task. |
GET /email/result
{
state: true,
result: {
id: 1,
email: "iv@scrupp.com",
result: "deliverable",
verify_at: {
date: "2023-12-01 10:13:44.000000",
timezone_type: 3,
timezone: "Europe/Helsinki"
}
},
remain_credits: 32001,
credits_consumed: 2
}
Parameter | Type | Description |
---|---|---|
string | Email for verification |
GET /email/verify
{
state: true,
id: 1
}
Parameter | Type | Description |
---|---|---|
id | string | The unique ID for a single email verification task. |
GET /email/result
{
state: true,
result: {
id: 1,
email: "iv@scrupp.com",
result: "deliverable",
verify_at: {
date: "2023-12-01 10:13:44.000000",
timezone_type: 3,
timezone: "Europe/Helsinki"
}
},
remain_credits: 32001,
credits_consumed: 2
}