curl --request GET \
--url https://api.launchpoint.sh/2026-07/campaigns \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.launchpoint.sh/2026-07/campaigns"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.launchpoint.sh/2026-07/campaigns', 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.launchpoint.sh/2026-07/campaigns",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.launchpoint.sh/2026-07/campaigns"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.launchpoint.sh/2026-07/campaigns")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.launchpoint.sh/2026-07/campaigns")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "3f8e4567-e89b-12d3-a456-426614174000",
"name": "Spring UGC Push",
"brand_id": "9a2b4567-e89b-12d3-a456-426614174000",
"brand_name": "Acme Skincare",
"status": "active",
"status_detail": {
"reason": "billing_issue",
"occurred_at": "2023-11-07T05:31:56Z"
},
"visibility": "public",
"invite_code": "GLOW2026",
"description": "Short-form UGC for our spring launch.",
"instructions": "Film in daylight and show the product in the first 3 seconds.",
"icon_url": "<string>",
"brief_url": "<string>",
"video_examples": [
"<string>"
],
"links": [
{
"url": "https://acme.com/products/glow-serum",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"service": "shopify",
"description": "Product page to link in bio",
"affiliate_code": "CREATOR20"
}
],
"targeting": {
"groups": [
{
"conditions": [
{
"property": "877972f8-af4b-4918-95df-d35377234817",
"values": [
"9b1f8c72-3d4e-4a2b-8c1a-2f6e5d4c3b2a"
]
}
],
"name": "North America"
}
]
},
"product": {
"name": "Acme Glow Serum",
"url": "https://acme.com/products/glow-serum",
"image_url": "https://cdn.acme.com/glow-serum.png"
},
"spent_cents": 123400,
"accepting_submissions": true,
"content_deadline_date": "2026-03-01",
"post_deadline_date": "2026-03-15",
"settings": {
"creator_approval_required": true,
"brand_approval_required": false,
"post_approval_mode": "strict",
"completion_mode": "all_optional"
},
"tasks": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"title": "15s unboxing video",
"instructions": "Open the package on camera and show your first reaction.",
"platforms": [
"tiktok",
"instagram"
],
"formats": [
"feed_video"
],
"caption": "Obsessed with my new glow ✨ @acmeskincare",
"require_ad_disclosure": true,
"tiktok_sound_url": "<string>",
"instagram_sound_url": "<string>",
"video_examples": [
"<string>"
],
"image_url": "<string>",
"review_mode": "media_review",
"autoreview_prompt": "The product must be clearly visible and mentioned by name.",
"is_required": true,
"max_posts_per_creator": 1,
"display_order": 0,
"status": "active",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"tasks_count": 2,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"has_more": true,
"next_cursor": "Y2FtcGFpZ25fMTIz"
}{
"error": 123,
"message": "<string>",
"code": "invalid_state_transition"
}{
"error": 123,
"message": "<string>",
"code": "invalid_state_transition"
}{
"error": 123,
"message": "<string>",
"code": "invalid_state_transition"
}{
"error": 123,
"message": "<string>",
"code": "invalid_state_transition"
}List Campaigns
Returns campaigns visible to the API key. Brand keys see their own campaigns; agency keys see campaigns of all brands they manage. Results are sorted by creation date, newest first.
curl --request GET \
--url https://api.launchpoint.sh/2026-07/campaigns \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.launchpoint.sh/2026-07/campaigns"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.launchpoint.sh/2026-07/campaigns', 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.launchpoint.sh/2026-07/campaigns",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.launchpoint.sh/2026-07/campaigns"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.launchpoint.sh/2026-07/campaigns")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.launchpoint.sh/2026-07/campaigns")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "3f8e4567-e89b-12d3-a456-426614174000",
"name": "Spring UGC Push",
"brand_id": "9a2b4567-e89b-12d3-a456-426614174000",
"brand_name": "Acme Skincare",
"status": "active",
"status_detail": {
"reason": "billing_issue",
"occurred_at": "2023-11-07T05:31:56Z"
},
"visibility": "public",
"invite_code": "GLOW2026",
"description": "Short-form UGC for our spring launch.",
"instructions": "Film in daylight and show the product in the first 3 seconds.",
"icon_url": "<string>",
"brief_url": "<string>",
"video_examples": [
"<string>"
],
"links": [
{
"url": "https://acme.com/products/glow-serum",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"service": "shopify",
"description": "Product page to link in bio",
"affiliate_code": "CREATOR20"
}
],
"targeting": {
"groups": [
{
"conditions": [
{
"property": "877972f8-af4b-4918-95df-d35377234817",
"values": [
"9b1f8c72-3d4e-4a2b-8c1a-2f6e5d4c3b2a"
]
}
],
"name": "North America"
}
]
},
"product": {
"name": "Acme Glow Serum",
"url": "https://acme.com/products/glow-serum",
"image_url": "https://cdn.acme.com/glow-serum.png"
},
"spent_cents": 123400,
"accepting_submissions": true,
"content_deadline_date": "2026-03-01",
"post_deadline_date": "2026-03-15",
"settings": {
"creator_approval_required": true,
"brand_approval_required": false,
"post_approval_mode": "strict",
"completion_mode": "all_optional"
},
"tasks": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"title": "15s unboxing video",
"instructions": "Open the package on camera and show your first reaction.",
"platforms": [
"tiktok",
"instagram"
],
"formats": [
"feed_video"
],
"caption": "Obsessed with my new glow ✨ @acmeskincare",
"require_ad_disclosure": true,
"tiktok_sound_url": "<string>",
"instagram_sound_url": "<string>",
"video_examples": [
"<string>"
],
"image_url": "<string>",
"review_mode": "media_review",
"autoreview_prompt": "The product must be clearly visible and mentioned by name.",
"is_required": true,
"max_posts_per_creator": 1,
"display_order": 0,
"status": "active",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"tasks_count": 2,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"has_more": true,
"next_cursor": "Y2FtcGFpZ25fMTIz"
}{
"error": 123,
"message": "<string>",
"code": "invalid_state_transition"
}{
"error": 123,
"message": "<string>",
"code": "invalid_state_transition"
}{
"error": 123,
"message": "<string>",
"code": "invalid_state_transition"
}{
"error": 123,
"message": "<string>",
"code": "invalid_state_transition"
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Filter by status. Repeat the parameter to match any of several statuses (e.g. ?status=active&status=paused).
Campaign lifecycle status. draft → pending_approval (submitted for Launchpoint review) → active ⇄ paused → completed. A denied publish returns the campaign to draft with status_detail populated.
draft, pending_approval, active, paused, completed Narrow results to a single brand. Agency keys only; must be a brand the agency manages.
Only campaigns created at or after this time (ISO 8601)
Only campaigns created before this time (ISO 8601)
Number of items to return per page
1 <= x <= 100Opaque pagination cursor from a previous response's next_cursor