Put posts under tracking
curl --request POST \
--url https://api.clipstake.com/v1/submissions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"project_id": "<string>",
"account_id": "<string>",
"items": [
{
"url": "<string>",
"metadata": {}
}
]
}
'import requests
url = "https://api.clipstake.com/v1/submissions"
payload = {
"project_id": "<string>",
"account_id": "<string>",
"items": [
{
"url": "<string>",
"metadata": {}
}
]
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
project_id: '<string>',
account_id: '<string>',
items: [{url: '<string>', metadata: {}}]
})
};
fetch('https://api.clipstake.com/v1/submissions', 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.clipstake.com/v1/submissions",
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([
'project_id' => '<string>',
'account_id' => '<string>',
'items' => [
[
'url' => '<string>',
'metadata' => [
]
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"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://api.clipstake.com/v1/submissions"
payload := strings.NewReader("{\n \"project_id\": \"<string>\",\n \"account_id\": \"<string>\",\n \"items\": [\n {\n \"url\": \"<string>\",\n \"metadata\": {}\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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.clipstake.com/v1/submissions")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"project_id\": \"<string>\",\n \"account_id\": \"<string>\",\n \"items\": [\n {\n \"url\": \"<string>\",\n \"metadata\": {}\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.clipstake.com/v1/submissions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"project_id\": \"<string>\",\n \"account_id\": \"<string>\",\n \"items\": [\n {\n \"url\": \"<string>\",\n \"metadata\": {}\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"data": [
{
"url": "https://www.instagram.com/p/C9x4AbCdEfG/",
"status": "created",
"submission": {
"id": "sub_4f9c0a1b2c3d4e5f60718293",
"platform": "instagram",
"url": "https://www.instagram.com/p/C9x4AbCdEfG/",
"platform_media_id": "18062712345678901",
"media_type": "short_video",
"account": {
"id": "acct_3f9c0a1b2c3d4e5f60718293",
"username": "acme.studio",
"external_user_id": "customer_8f3a2c19"
},
"posted_at": "2026-09-10T14:22:00.000Z",
"status": "active",
"next_read_at": "2026-09-14T14:00:00.000Z",
"unavailable_reason": null,
"parked_reason": null,
"latest": {
"captured_at": "2026-09-14T10:00:00.000Z",
"views": 128450,
"reach": 96720,
"likes": 8140,
"comments": 326,
"shares": 1190,
"saves": 2480,
"total_interactions": 12136,
"extra": {}
},
"metadata": {
"campaign": "fall"
},
"created_at": "2026-09-10T14:25:43.000Z"
}
}
]
}{
"error": {
"code": "invalid_request",
"message": "The request body or parameters are invalid.",
"request_id": "req_01K5A7N8QY2M4C6V9X3J"
}
}{
"error": {
"code": "unauthorized",
"message": "Provide a valid API key.",
"request_id": "req_01K5A7P2CH8T6R4W9M1B"
}
}{
"error": {
"code": "quota_exceeded",
"message": "This workspace has reached its submission limit.",
"request_id": "req_01K5A7P8VM2T6R4W9C3H"
}
}{
"error": {
"code": "not_found",
"message": "The requested resource was not found.",
"request_id": "req_01K5A7R4WM9C2N6B8X3D"
}
}{
"error": {
"code": "conflict",
"message": "Submission discovery is already running.",
"request_id": "req_01K5A7T3MX8C2V6B9N4P"
}
}{
"error": {
"code": "rate_limited",
"message": "The platform is rate-limiting this account.",
"request_id": "req_01K5A7S2JT5B9W3M7R1F"
}
}{
"error": {
"code": "internal_error",
"message": "An unexpected error occurred.",
"request_id": "req_01K5A7S6FQ3V8H2N9C4M"
}
}Submissions
Put posts under tracking
POST
/
submissions
Put posts under tracking
curl --request POST \
--url https://api.clipstake.com/v1/submissions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"project_id": "<string>",
"account_id": "<string>",
"items": [
{
"url": "<string>",
"metadata": {}
}
]
}
'import requests
url = "https://api.clipstake.com/v1/submissions"
payload = {
"project_id": "<string>",
"account_id": "<string>",
"items": [
{
"url": "<string>",
"metadata": {}
}
]
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
project_id: '<string>',
account_id: '<string>',
items: [{url: '<string>', metadata: {}}]
})
};
fetch('https://api.clipstake.com/v1/submissions', 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.clipstake.com/v1/submissions",
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([
'project_id' => '<string>',
'account_id' => '<string>',
'items' => [
[
'url' => '<string>',
'metadata' => [
]
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"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://api.clipstake.com/v1/submissions"
payload := strings.NewReader("{\n \"project_id\": \"<string>\",\n \"account_id\": \"<string>\",\n \"items\": [\n {\n \"url\": \"<string>\",\n \"metadata\": {}\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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.clipstake.com/v1/submissions")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"project_id\": \"<string>\",\n \"account_id\": \"<string>\",\n \"items\": [\n {\n \"url\": \"<string>\",\n \"metadata\": {}\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.clipstake.com/v1/submissions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"project_id\": \"<string>\",\n \"account_id\": \"<string>\",\n \"items\": [\n {\n \"url\": \"<string>\",\n \"metadata\": {}\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"data": [
{
"url": "https://www.instagram.com/p/C9x4AbCdEfG/",
"status": "created",
"submission": {
"id": "sub_4f9c0a1b2c3d4e5f60718293",
"platform": "instagram",
"url": "https://www.instagram.com/p/C9x4AbCdEfG/",
"platform_media_id": "18062712345678901",
"media_type": "short_video",
"account": {
"id": "acct_3f9c0a1b2c3d4e5f60718293",
"username": "acme.studio",
"external_user_id": "customer_8f3a2c19"
},
"posted_at": "2026-09-10T14:22:00.000Z",
"status": "active",
"next_read_at": "2026-09-14T14:00:00.000Z",
"unavailable_reason": null,
"parked_reason": null,
"latest": {
"captured_at": "2026-09-14T10:00:00.000Z",
"views": 128450,
"reach": 96720,
"likes": 8140,
"comments": 326,
"shares": 1190,
"saves": 2480,
"total_interactions": 12136,
"extra": {}
},
"metadata": {
"campaign": "fall"
},
"created_at": "2026-09-10T14:25:43.000Z"
}
}
]
}{
"error": {
"code": "invalid_request",
"message": "The request body or parameters are invalid.",
"request_id": "req_01K5A7N8QY2M4C6V9X3J"
}
}{
"error": {
"code": "unauthorized",
"message": "Provide a valid API key.",
"request_id": "req_01K5A7P2CH8T6R4W9M1B"
}
}{
"error": {
"code": "quota_exceeded",
"message": "This workspace has reached its submission limit.",
"request_id": "req_01K5A7P8VM2T6R4W9C3H"
}
}{
"error": {
"code": "not_found",
"message": "The requested resource was not found.",
"request_id": "req_01K5A7R4WM9C2N6B8X3D"
}
}{
"error": {
"code": "conflict",
"message": "Submission discovery is already running.",
"request_id": "req_01K5A7T3MX8C2V6B9N4P"
}
}{
"error": {
"code": "rate_limited",
"message": "The platform is rate-limiting this account.",
"request_id": "req_01K5A7S2JT5B9W3M7R1F"
}
}{
"error": {
"code": "internal_error",
"message": "An unexpected error occurred.",
"request_id": "req_01K5A7S6FQ3V8H2N9C4M"
}
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
Response
Successful response
Show child attributes
Show child attributes