curl --request POST \
--url https://auto.boost.api/v1/presets/browse \
--header 'Content-Type: application/json' \
--data '
{
"page": 1,
"limit": 50,
"goal": "OUTCOME_TRAFFIC",
"vertical": "finance",
"agency_id": 2345,
"partner_id": 2345,
"preset_name": "Travel",
"excluded_preset_id": 123,
"location": {
"value": "<string>",
"label": "<string>"
}
}
'import requests
url = "https://auto.boost.api/v1/presets/browse"
payload = {
"page": 1,
"limit": 50,
"goal": "OUTCOME_TRAFFIC",
"vertical": "finance",
"agency_id": 2345,
"partner_id": 2345,
"preset_name": "Travel",
"excluded_preset_id": 123,
"location": {
"value": "<string>",
"label": "<string>"
}
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
page: 1,
limit: 50,
goal: 'OUTCOME_TRAFFIC',
vertical: 'finance',
agency_id: 2345,
partner_id: 2345,
preset_name: 'Travel',
excluded_preset_id: 123,
location: {value: '<string>', label: '<string>'}
})
};
fetch('https://auto.boost.api/v1/presets/browse', 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://auto.boost.api/v1/presets/browse",
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([
'page' => 1,
'limit' => 50,
'goal' => 'OUTCOME_TRAFFIC',
'vertical' => 'finance',
'agency_id' => 2345,
'partner_id' => 2345,
'preset_name' => 'Travel',
'excluded_preset_id' => 123,
'location' => [
'value' => '<string>',
'label' => '<string>'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$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://auto.boost.api/v1/presets/browse"
payload := strings.NewReader("{\n \"page\": 1,\n \"limit\": 50,\n \"goal\": \"OUTCOME_TRAFFIC\",\n \"vertical\": \"finance\",\n \"agency_id\": 2345,\n \"partner_id\": 2345,\n \"preset_name\": \"Travel\",\n \"excluded_preset_id\": 123,\n \"location\": {\n \"value\": \"<string>\",\n \"label\": \"<string>\"\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
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://auto.boost.api/v1/presets/browse")
.header("Content-Type", "application/json")
.body("{\n \"page\": 1,\n \"limit\": 50,\n \"goal\": \"OUTCOME_TRAFFIC\",\n \"vertical\": \"finance\",\n \"agency_id\": 2345,\n \"partner_id\": 2345,\n \"preset_name\": \"Travel\",\n \"excluded_preset_id\": 123,\n \"location\": {\n \"value\": \"<string>\",\n \"label\": \"<string>\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://auto.boost.api/v1/presets/browse")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"page\": 1,\n \"limit\": 50,\n \"goal\": \"OUTCOME_TRAFFIC\",\n \"vertical\": \"finance\",\n \"agency_id\": 2345,\n \"partner_id\": 2345,\n \"preset_name\": \"Travel\",\n \"excluded_preset_id\": 123,\n \"location\": {\n \"value\": \"<string>\",\n \"label\": \"<string>\"\n }\n}"
response = http.request(request)
puts response.read_body[
{
"id": 1,
"title": "Travel Pack",
"image": "<string>",
"campaign_objective": "<string>",
"vertical": [
"<string>"
],
"price": "19.99",
"original_price": "29.99",
"version": 1,
"private": true,
"platform": "all",
"audience_targeting": "<string>",
"location_json": "<string>",
"description": "<string>",
"hashtags": [
"<string>"
],
"reach": [
"<unknown>"
],
"allowed_options": [
"location"
],
"rating": 4,
"agency": {
"username": "Lounge Lizard Worldwide",
"description": "<string>",
"about": "<string>",
"image": "<string>",
"website": "<string>",
"locations": "<string>",
"services": [
[
"E-commerce",
"Branding"
]
],
"industries": [
[
"Retail",
"Healthcare"
]
],
"gps": "40.730610,-73.935242",
"employess": "11-50",
"coordinates": "48.148598,17.107748"
}
}
]Get list of presets, filtered by parameters
Returns active, public presets (active=1, private=0), ordered by title ascending. Each element is Presets::apiData(). Pagination: limit is capped at 50; page defaults to 1.
curl --request POST \
--url https://auto.boost.api/v1/presets/browse \
--header 'Content-Type: application/json' \
--data '
{
"page": 1,
"limit": 50,
"goal": "OUTCOME_TRAFFIC",
"vertical": "finance",
"agency_id": 2345,
"partner_id": 2345,
"preset_name": "Travel",
"excluded_preset_id": 123,
"location": {
"value": "<string>",
"label": "<string>"
}
}
'import requests
url = "https://auto.boost.api/v1/presets/browse"
payload = {
"page": 1,
"limit": 50,
"goal": "OUTCOME_TRAFFIC",
"vertical": "finance",
"agency_id": 2345,
"partner_id": 2345,
"preset_name": "Travel",
"excluded_preset_id": 123,
"location": {
"value": "<string>",
"label": "<string>"
}
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
page: 1,
limit: 50,
goal: 'OUTCOME_TRAFFIC',
vertical: 'finance',
agency_id: 2345,
partner_id: 2345,
preset_name: 'Travel',
excluded_preset_id: 123,
location: {value: '<string>', label: '<string>'}
})
};
fetch('https://auto.boost.api/v1/presets/browse', 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://auto.boost.api/v1/presets/browse",
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([
'page' => 1,
'limit' => 50,
'goal' => 'OUTCOME_TRAFFIC',
'vertical' => 'finance',
'agency_id' => 2345,
'partner_id' => 2345,
'preset_name' => 'Travel',
'excluded_preset_id' => 123,
'location' => [
'value' => '<string>',
'label' => '<string>'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$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://auto.boost.api/v1/presets/browse"
payload := strings.NewReader("{\n \"page\": 1,\n \"limit\": 50,\n \"goal\": \"OUTCOME_TRAFFIC\",\n \"vertical\": \"finance\",\n \"agency_id\": 2345,\n \"partner_id\": 2345,\n \"preset_name\": \"Travel\",\n \"excluded_preset_id\": 123,\n \"location\": {\n \"value\": \"<string>\",\n \"label\": \"<string>\"\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
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://auto.boost.api/v1/presets/browse")
.header("Content-Type", "application/json")
.body("{\n \"page\": 1,\n \"limit\": 50,\n \"goal\": \"OUTCOME_TRAFFIC\",\n \"vertical\": \"finance\",\n \"agency_id\": 2345,\n \"partner_id\": 2345,\n \"preset_name\": \"Travel\",\n \"excluded_preset_id\": 123,\n \"location\": {\n \"value\": \"<string>\",\n \"label\": \"<string>\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://auto.boost.api/v1/presets/browse")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"page\": 1,\n \"limit\": 50,\n \"goal\": \"OUTCOME_TRAFFIC\",\n \"vertical\": \"finance\",\n \"agency_id\": 2345,\n \"partner_id\": 2345,\n \"preset_name\": \"Travel\",\n \"excluded_preset_id\": 123,\n \"location\": {\n \"value\": \"<string>\",\n \"label\": \"<string>\"\n }\n}"
response = http.request(request)
puts response.read_body[
{
"id": 1,
"title": "Travel Pack",
"image": "<string>",
"campaign_objective": "<string>",
"vertical": [
"<string>"
],
"price": "19.99",
"original_price": "29.99",
"version": 1,
"private": true,
"platform": "all",
"audience_targeting": "<string>",
"location_json": "<string>",
"description": "<string>",
"hashtags": [
"<string>"
],
"reach": [
"<unknown>"
],
"allowed_options": [
"location"
],
"rating": 4,
"agency": {
"username": "Lounge Lizard Worldwide",
"description": "<string>",
"about": "<string>",
"image": "<string>",
"website": "<string>",
"locations": "<string>",
"services": [
[
"E-commerce",
"Branding"
]
],
"industries": [
[
"Retail",
"Healthcare"
]
],
"gps": "40.730610,-73.935242",
"employess": "11-50",
"coordinates": "48.148598,17.107748"
}
}
]Body
All fields optional. Filters are combined with AND.
1-based page index for offset calculation
x >= 1Page size; values above 50 are treated as 50
1 <= x <= 50Exact match on presets.campaign_objective (Marketing API objective code, e.g. OUTCOME_TRAFFIC, OUTCOME_LEADS, or legacy values still stored in DB)
"OUTCOME_TRAFFIC"
SQL LIKE filter on presets.vertical (comma-separated slug list in DB); match is literal substring
"finance"
Only presets where master_agency_id equals this value
2345
Alias filter: same as agency_id (master_agency_id match)
2345
Case-sensitive prefix match on title (LIKE 'value%')
"Travel"
Exclude this preset id from results
JSON_CONTAINS on audience_targeting.geo_locations for country, city, or region entries
Show child attributes
Show child attributes
Response
Array of preset payloads (see #/components/schemas/Preset); browse does not include number_of_purchases
1
"Travel Pack"
Absolute URL of the preset image; null if none
Localized human-readable objective label from BoostedPages::objectivesList()
Display labels per stored vertical slug; entry may be null if the slug has no mapping
Chargeable monthly price including boosterberg_fixed_fee
"19.99"
Original price including boosterberg_fixed_fee
"29.99"
1
all, facebook, instagram "all"
JSON string of location/geographic targeting payload
Keywords from boosting conditions when advanced_settings is enabled; otherwise empty
[] when advanced_settings is off; integer percentage when set; null when advanced_settings is on but no matching condition row
Subset of preset_allowed_options.option values enabled for this preset (see PresetAllowedOptions constants / getAll())
location, age, gender, tags, advanced_settings, cta Average preset review rating rounded to nearest whole number; 0 when there are no reviews
4
Show child attributes
Show child attributes