Start a bulk export
curl --request POST \
--url https://api-v1.maverickintelligence.co/v1/exports \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"dateField": "<string>",
"isHotLead": true,
"industries": [
"<string>"
],
"regions": [
"<string>"
],
"seniority": [
"<string>"
],
"jobFunctions": [
"<string>"
],
"domains": [
"<string>"
],
"pages": [
"<string>"
],
"campaigns": [
"<string>"
],
"trafficTypes": [
"<string>"
],
"adPlatforms": [
"<string>"
],
"visitCountMin": 2,
"hasBusinessEmail": true,
"hasLinkedIn": true,
"hasPhone": true,
"multiClientOnly": true,
"search": "<string>",
"sortBy": "<string>",
"filename": "<string>"
}
'import requests
url = "https://api-v1.maverickintelligence.co/v1/exports"
payload = {
"dateField": "<string>",
"isHotLead": True,
"industries": ["<string>"],
"regions": ["<string>"],
"seniority": ["<string>"],
"jobFunctions": ["<string>"],
"domains": ["<string>"],
"pages": ["<string>"],
"campaigns": ["<string>"],
"trafficTypes": ["<string>"],
"adPlatforms": ["<string>"],
"visitCountMin": 2,
"hasBusinessEmail": True,
"hasLinkedIn": True,
"hasPhone": True,
"multiClientOnly": True,
"search": "<string>",
"sortBy": "<string>",
"filename": "<string>"
}
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
dateField: '<string>',
isHotLead: true,
industries: ['<string>'],
regions: ['<string>'],
seniority: ['<string>'],
jobFunctions: ['<string>'],
domains: ['<string>'],
pages: ['<string>'],
campaigns: ['<string>'],
trafficTypes: ['<string>'],
adPlatforms: ['<string>'],
visitCountMin: 2,
hasBusinessEmail: true,
hasLinkedIn: true,
hasPhone: true,
multiClientOnly: true,
search: '<string>',
sortBy: '<string>',
filename: '<string>'
})
};
fetch('https://api-v1.maverickintelligence.co/v1/exports', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api-v1.maverickintelligence.co/v1/exports",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'dateField' => '<string>',
'isHotLead' => true,
'industries' => [
'<string>'
],
'regions' => [
'<string>'
],
'seniority' => [
'<string>'
],
'jobFunctions' => [
'<string>'
],
'domains' => [
'<string>'
],
'pages' => [
'<string>'
],
'campaigns' => [
'<string>'
],
'trafficTypes' => [
'<string>'
],
'adPlatforms' => [
'<string>'
],
'visitCountMin' => 2,
'hasBusinessEmail' => true,
'hasLinkedIn' => true,
'hasPhone' => true,
'multiClientOnly' => true,
'search' => '<string>',
'sortBy' => '<string>',
'filename' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api-v1.maverickintelligence.co/v1/exports"
payload := strings.NewReader("{\n \"dateField\": \"<string>\",\n \"isHotLead\": true,\n \"industries\": [\n \"<string>\"\n ],\n \"regions\": [\n \"<string>\"\n ],\n \"seniority\": [\n \"<string>\"\n ],\n \"jobFunctions\": [\n \"<string>\"\n ],\n \"domains\": [\n \"<string>\"\n ],\n \"pages\": [\n \"<string>\"\n ],\n \"campaigns\": [\n \"<string>\"\n ],\n \"trafficTypes\": [\n \"<string>\"\n ],\n \"adPlatforms\": [\n \"<string>\"\n ],\n \"visitCountMin\": 2,\n \"hasBusinessEmail\": true,\n \"hasLinkedIn\": true,\n \"hasPhone\": true,\n \"multiClientOnly\": true,\n \"search\": \"<string>\",\n \"sortBy\": \"<string>\",\n \"filename\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-API-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api-v1.maverickintelligence.co/v1/exports")
.header("X-API-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"dateField\": \"<string>\",\n \"isHotLead\": true,\n \"industries\": [\n \"<string>\"\n ],\n \"regions\": [\n \"<string>\"\n ],\n \"seniority\": [\n \"<string>\"\n ],\n \"jobFunctions\": [\n \"<string>\"\n ],\n \"domains\": [\n \"<string>\"\n ],\n \"pages\": [\n \"<string>\"\n ],\n \"campaigns\": [\n \"<string>\"\n ],\n \"trafficTypes\": [\n \"<string>\"\n ],\n \"adPlatforms\": [\n \"<string>\"\n ],\n \"visitCountMin\": 2,\n \"hasBusinessEmail\": true,\n \"hasLinkedIn\": true,\n \"hasPhone\": true,\n \"multiClientOnly\": true,\n \"search\": \"<string>\",\n \"sortBy\": \"<string>\",\n \"filename\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-v1.maverickintelligence.co/v1/exports")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"dateField\": \"<string>\",\n \"isHotLead\": true,\n \"industries\": [\n \"<string>\"\n ],\n \"regions\": [\n \"<string>\"\n ],\n \"seniority\": [\n \"<string>\"\n ],\n \"jobFunctions\": [\n \"<string>\"\n ],\n \"domains\": [\n \"<string>\"\n ],\n \"pages\": [\n \"<string>\"\n ],\n \"campaigns\": [\n \"<string>\"\n ],\n \"trafficTypes\": [\n \"<string>\"\n ],\n \"adPlatforms\": [\n \"<string>\"\n ],\n \"visitCountMin\": 2,\n \"hasBusinessEmail\": true,\n \"hasLinkedIn\": true,\n \"hasPhone\": true,\n \"multiClientOnly\": true,\n \"search\": \"<string>\",\n \"sortBy\": \"<string>\",\n \"filename\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"jobId": "<string>",
"status": "processing",
"statusUrl": "<string>",
"pollAfterSeconds": 123
}API Reference
Start Export
Queue a bulk CSV export of every person matching the filters
POST
/
v1
/
exports
Start a bulk export
curl --request POST \
--url https://api-v1.maverickintelligence.co/v1/exports \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"dateField": "<string>",
"isHotLead": true,
"industries": [
"<string>"
],
"regions": [
"<string>"
],
"seniority": [
"<string>"
],
"jobFunctions": [
"<string>"
],
"domains": [
"<string>"
],
"pages": [
"<string>"
],
"campaigns": [
"<string>"
],
"trafficTypes": [
"<string>"
],
"adPlatforms": [
"<string>"
],
"visitCountMin": 2,
"hasBusinessEmail": true,
"hasLinkedIn": true,
"hasPhone": true,
"multiClientOnly": true,
"search": "<string>",
"sortBy": "<string>",
"filename": "<string>"
}
'import requests
url = "https://api-v1.maverickintelligence.co/v1/exports"
payload = {
"dateField": "<string>",
"isHotLead": True,
"industries": ["<string>"],
"regions": ["<string>"],
"seniority": ["<string>"],
"jobFunctions": ["<string>"],
"domains": ["<string>"],
"pages": ["<string>"],
"campaigns": ["<string>"],
"trafficTypes": ["<string>"],
"adPlatforms": ["<string>"],
"visitCountMin": 2,
"hasBusinessEmail": True,
"hasLinkedIn": True,
"hasPhone": True,
"multiClientOnly": True,
"search": "<string>",
"sortBy": "<string>",
"filename": "<string>"
}
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
dateField: '<string>',
isHotLead: true,
industries: ['<string>'],
regions: ['<string>'],
seniority: ['<string>'],
jobFunctions: ['<string>'],
domains: ['<string>'],
pages: ['<string>'],
campaigns: ['<string>'],
trafficTypes: ['<string>'],
adPlatforms: ['<string>'],
visitCountMin: 2,
hasBusinessEmail: true,
hasLinkedIn: true,
hasPhone: true,
multiClientOnly: true,
search: '<string>',
sortBy: '<string>',
filename: '<string>'
})
};
fetch('https://api-v1.maverickintelligence.co/v1/exports', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api-v1.maverickintelligence.co/v1/exports",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'dateField' => '<string>',
'isHotLead' => true,
'industries' => [
'<string>'
],
'regions' => [
'<string>'
],
'seniority' => [
'<string>'
],
'jobFunctions' => [
'<string>'
],
'domains' => [
'<string>'
],
'pages' => [
'<string>'
],
'campaigns' => [
'<string>'
],
'trafficTypes' => [
'<string>'
],
'adPlatforms' => [
'<string>'
],
'visitCountMin' => 2,
'hasBusinessEmail' => true,
'hasLinkedIn' => true,
'hasPhone' => true,
'multiClientOnly' => true,
'search' => '<string>',
'sortBy' => '<string>',
'filename' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api-v1.maverickintelligence.co/v1/exports"
payload := strings.NewReader("{\n \"dateField\": \"<string>\",\n \"isHotLead\": true,\n \"industries\": [\n \"<string>\"\n ],\n \"regions\": [\n \"<string>\"\n ],\n \"seniority\": [\n \"<string>\"\n ],\n \"jobFunctions\": [\n \"<string>\"\n ],\n \"domains\": [\n \"<string>\"\n ],\n \"pages\": [\n \"<string>\"\n ],\n \"campaigns\": [\n \"<string>\"\n ],\n \"trafficTypes\": [\n \"<string>\"\n ],\n \"adPlatforms\": [\n \"<string>\"\n ],\n \"visitCountMin\": 2,\n \"hasBusinessEmail\": true,\n \"hasLinkedIn\": true,\n \"hasPhone\": true,\n \"multiClientOnly\": true,\n \"search\": \"<string>\",\n \"sortBy\": \"<string>\",\n \"filename\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-API-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api-v1.maverickintelligence.co/v1/exports")
.header("X-API-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"dateField\": \"<string>\",\n \"isHotLead\": true,\n \"industries\": [\n \"<string>\"\n ],\n \"regions\": [\n \"<string>\"\n ],\n \"seniority\": [\n \"<string>\"\n ],\n \"jobFunctions\": [\n \"<string>\"\n ],\n \"domains\": [\n \"<string>\"\n ],\n \"pages\": [\n \"<string>\"\n ],\n \"campaigns\": [\n \"<string>\"\n ],\n \"trafficTypes\": [\n \"<string>\"\n ],\n \"adPlatforms\": [\n \"<string>\"\n ],\n \"visitCountMin\": 2,\n \"hasBusinessEmail\": true,\n \"hasLinkedIn\": true,\n \"hasPhone\": true,\n \"multiClientOnly\": true,\n \"search\": \"<string>\",\n \"sortBy\": \"<string>\",\n \"filename\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-v1.maverickintelligence.co/v1/exports")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"dateField\": \"<string>\",\n \"isHotLead\": true,\n \"industries\": [\n \"<string>\"\n ],\n \"regions\": [\n \"<string>\"\n ],\n \"seniority\": [\n \"<string>\"\n ],\n \"jobFunctions\": [\n \"<string>\"\n ],\n \"domains\": [\n \"<string>\"\n ],\n \"pages\": [\n \"<string>\"\n ],\n \"campaigns\": [\n \"<string>\"\n ],\n \"trafficTypes\": [\n \"<string>\"\n ],\n \"adPlatforms\": [\n \"<string>\"\n ],\n \"visitCountMin\": 2,\n \"hasBusinessEmail\": true,\n \"hasLinkedIn\": true,\n \"hasPhone\": true,\n \"multiClientOnly\": true,\n \"search\": \"<string>\",\n \"sortBy\": \"<string>\",\n \"filename\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"jobId": "<string>",
"status": "processing",
"statusUrl": "<string>",
"pollAfterSeconds": 123
}Authorizations
API key in format: mk_live_{40 hex chars}
Body
application/json
Filters. Omit the body entirely to export everything. Array values may be sent as JSON arrays or comma-separated strings.
How far back to include. Default: everything.
Available options:
24h, 7d, 30d, 90d, all Which date timeframe applies to. Default lastSeen.
Only visitors currently qualifying as hot leads.
Restrict to visitors on these tracked site domains.
Restrict to visitors who saw these page paths.
Required range:
x >= 1Available options:
in_crm, not_in_crm, customers Free-text match across name, company and email.
Available options:
asc, desc Name for the downloaded file. Default: maverick_people_.csv