curl --request GET \
--url https://dashboard.launchpointhq.com/api/v1/pay-structures \
--header 'x-api-key: <api-key>'import requests
url = "https://dashboard.launchpointhq.com/api/v1/pay-structures"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://dashboard.launchpointhq.com/api/v1/pay-structures', 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://dashboard.launchpointhq.com/api/v1/pay-structures",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"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"
"net/http"
"io"
)
func main() {
url := "https://dashboard.launchpointhq.com/api/v1/pay-structures"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://dashboard.launchpointhq.com/api/v1/pay-structures")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://dashboard.launchpointhq.com/api/v1/pay-structures")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"creatorId": "crt_demo_creator_7x2",
"creatorName": "Demo Creator",
"programId": "00000000-0000-4000-8000-000000000101",
"programName": "Spring Launch",
"contractId": "00000000-0000-4000-8000-000000000102",
"createdAt": 1786003200000,
"updatedAt": 1786089600000,
"money": {
"payModelKind": "post",
"baseRateCents": 7500,
"nonCashBaseRateEntries": [
{
"currency": "manual",
"name": "Product sample",
"valueCents": 2500
}
],
"cpmCents": 400,
"cpcCents": 25,
"viewCap": 100000,
"minViewThreshold": 1000,
"maxCpmEarnableCents": 50000,
"maxTotalEarnableCents": 100000,
"platformRatios": {
"instagram": 0.6,
"tiktok": 0.4
}
},
"canvas": null
},
{
"creatorId": "crt_demo_creator_9k4",
"creatorName": "Sample Creator",
"programId": "00000000-0000-4000-8000-000000000103",
"programName": "Always-On Video Program",
"contractId": null,
"createdAt": 1785916800000,
"updatedAt": 1786089600000,
"money": {
"payModelKind": "canvas_payscale",
"baseRateCents": 0,
"nonCashBaseRateEntries": [],
"cpmCents": null,
"cpcCents": null,
"viewCap": null,
"minViewThreshold": null,
"maxCpmEarnableCents": null,
"maxTotalEarnableCents": null,
"platformRatios": null
},
"canvas": {
"assigned": {
"id": "scale-growth",
"label": "Growth",
"isDefault": false,
"isTrial": false,
"assignment": "explicit",
"assignedAt": 1786003200000
},
"contentRules": [
{
"id": "rule-talking-head",
"label": "Talking head",
"matcher": {
"kind": "content",
"description": "Creator speaks directly to camera"
},
"pay": {
"payoutType": "view_bonus",
"platformPayoutMode": "per_post",
"viewTrackingDays": 30,
"trialCutoff": {
"views": 10000,
"posts": 10,
"days": 14,
"enabled": true
},
"perCreatorCap": {
"enabled": true,
"capCents": 150000,
"periodDays": 30
},
"inactivityCutoff": {
"enabled": true,
"days": 30
},
"baseRateDisabled": false,
"tiers": [
{
"viewsThreshold": 1000,
"bonusCents": 2000
},
{
"viewsThreshold": 10000,
"bonusCents": 10000
},
{
"viewsThreshold": 50000,
"bonusCents": 30000
}
],
"flatFeeCents": 0
}
}
],
"fallbackPay": {
"payoutType": "view_bonus",
"platformPayoutMode": "per_post",
"viewTrackingDays": 30,
"trialCutoff": {
"views": 10000,
"posts": 10,
"days": 14,
"enabled": true
},
"perCreatorCap": {
"enabled": true,
"capCents": 150000,
"periodDays": 30
},
"inactivityCutoff": {
"enabled": true,
"days": 30
},
"baseRateDisabled": false,
"tiers": [
{
"viewsThreshold": 1000,
"bonusCents": 2000
},
{
"viewsThreshold": 10000,
"bonusCents": 10000
},
{
"viewsThreshold": 50000,
"bonusCents": 30000
}
],
"flatFeeCents": 0
},
"maxVideosPerWeek": 5
}
}
],
"page": 1,
"total": 2,
"totalPages": 1
}Browse creator pay structures
Get the pay terms for each visible creator and program.
This endpoint includes offer-level cash terms and active Canvas payscales. baseRateCents contains cash entries only. Manual and Shopify entries are returned separately in nonCashBaseRateEntries with their valueCents; a product seed is not cash. platformRatios: null means there is no platform split. In the Canvas assigned block, assignment: "explicit" means the creator really resolves to that payscale group. assignment: "campaign_default" covers both a creator who was never assigned and a creator whose assigned group no longer exists; assignedAt is epoch milliseconds for an explicit assignment and is null for campaign_default.
curl --request GET \
--url https://dashboard.launchpointhq.com/api/v1/pay-structures \
--header 'x-api-key: <api-key>'import requests
url = "https://dashboard.launchpointhq.com/api/v1/pay-structures"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://dashboard.launchpointhq.com/api/v1/pay-structures', 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://dashboard.launchpointhq.com/api/v1/pay-structures",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"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"
"net/http"
"io"
)
func main() {
url := "https://dashboard.launchpointhq.com/api/v1/pay-structures"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://dashboard.launchpointhq.com/api/v1/pay-structures")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://dashboard.launchpointhq.com/api/v1/pay-structures")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"creatorId": "crt_demo_creator_7x2",
"creatorName": "Demo Creator",
"programId": "00000000-0000-4000-8000-000000000101",
"programName": "Spring Launch",
"contractId": "00000000-0000-4000-8000-000000000102",
"createdAt": 1786003200000,
"updatedAt": 1786089600000,
"money": {
"payModelKind": "post",
"baseRateCents": 7500,
"nonCashBaseRateEntries": [
{
"currency": "manual",
"name": "Product sample",
"valueCents": 2500
}
],
"cpmCents": 400,
"cpcCents": 25,
"viewCap": 100000,
"minViewThreshold": 1000,
"maxCpmEarnableCents": 50000,
"maxTotalEarnableCents": 100000,
"platformRatios": {
"instagram": 0.6,
"tiktok": 0.4
}
},
"canvas": null
},
{
"creatorId": "crt_demo_creator_9k4",
"creatorName": "Sample Creator",
"programId": "00000000-0000-4000-8000-000000000103",
"programName": "Always-On Video Program",
"contractId": null,
"createdAt": 1785916800000,
"updatedAt": 1786089600000,
"money": {
"payModelKind": "canvas_payscale",
"baseRateCents": 0,
"nonCashBaseRateEntries": [],
"cpmCents": null,
"cpcCents": null,
"viewCap": null,
"minViewThreshold": null,
"maxCpmEarnableCents": null,
"maxTotalEarnableCents": null,
"platformRatios": null
},
"canvas": {
"assigned": {
"id": "scale-growth",
"label": "Growth",
"isDefault": false,
"isTrial": false,
"assignment": "explicit",
"assignedAt": 1786003200000
},
"contentRules": [
{
"id": "rule-talking-head",
"label": "Talking head",
"matcher": {
"kind": "content",
"description": "Creator speaks directly to camera"
},
"pay": {
"payoutType": "view_bonus",
"platformPayoutMode": "per_post",
"viewTrackingDays": 30,
"trialCutoff": {
"views": 10000,
"posts": 10,
"days": 14,
"enabled": true
},
"perCreatorCap": {
"enabled": true,
"capCents": 150000,
"periodDays": 30
},
"inactivityCutoff": {
"enabled": true,
"days": 30
},
"baseRateDisabled": false,
"tiers": [
{
"viewsThreshold": 1000,
"bonusCents": 2000
},
{
"viewsThreshold": 10000,
"bonusCents": 10000
},
{
"viewsThreshold": 50000,
"bonusCents": 30000
}
],
"flatFeeCents": 0
}
}
],
"fallbackPay": {
"payoutType": "view_bonus",
"platformPayoutMode": "per_post",
"viewTrackingDays": 30,
"trialCutoff": {
"views": 10000,
"posts": 10,
"days": 14,
"enabled": true
},
"perCreatorCap": {
"enabled": true,
"capCents": 150000,
"periodDays": 30
},
"inactivityCutoff": {
"enabled": true,
"days": 30
},
"baseRateDisabled": false,
"tiers": [
{
"viewsThreshold": 1000,
"bonusCents": 2000
},
{
"viewsThreshold": 10000,
"bonusCents": 10000
},
{
"viewsThreshold": 50000,
"bonusCents": 30000
}
],
"flatFeeCents": 0
},
"maxVideosPerWeek": 5
}
}
],
"page": 1,
"total": 2,
"totalPages": 1
}Authorizations
API key created in Dashboard → Settings → Developer
Query Parameters
Choose the data scope. company (default) limits results to the API key company's data. agency includes the parent agency and its linked brands. scope=agency requires a parent agency key; other keys receive 403.
company, agency Pagination page number
x >= 1Items to return per page
1 <= x <= 100Narrow results to one opaque creator ID
Narrow results to one program