curl --request GET \
--url https://dashboard.launchpointhq.com/api/v1/posts/{id}/analysis \
--header 'x-api-key: <api-key>'import requests
url = "https://dashboard.launchpointhq.com/api/v1/posts/{id}/analysis"
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/posts/{id}/analysis', 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/posts/{id}/analysis",
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/posts/{id}/analysis"
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/posts/{id}/analysis")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://dashboard.launchpointhq.com/api/v1/posts/{id}/analysis")
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": {
"id": "post_demo_4k9",
"analysisStatus": "complete",
"analyzedAt": 1786183200000,
"durationSeconds": 14.2,
"storyboard": [
{
"startMs": 0,
"endMs": 6400,
"description": "A person reacts in surprise to the product on a kitchen counter.",
"transcript": "Wait, this actually works?",
"textOnScreen": null,
"sellsProduct": true
},
{
"startMs": 6400,
"endMs": 14200,
"description": "Close-up demo of the product with a price overlay.",
"transcript": null,
"textOnScreen": "Only $19",
"sellsProduct": true
}
],
"retention": {
"organic": {
"status": "available",
"reason": null,
"durationSeconds": 14.2,
"hookRatePct": 68.6,
"skipRatePct": 31.4,
"avgWatchTimeMs": 14360,
"totalWatchTimeMs": 184520000,
"updatedAt": 1786089600000
},
"paid": {
"status": "available",
"reason": null,
"daysLive": 12,
"throughDate": "2026-09-18",
"impressions": 245000,
"video3sViews": 121000,
"videoP25Views": 88000,
"videoP50Views": 54000,
"videoP75Views": 31000,
"videoP100Views": 19000,
"hookRatePct": 49.4,
"completionRatePct": 7.8
}
}
}
}View post analysis
Get the media analysis for one post: the storyboard scenes the analyzer wrote plus retention data.
analysisStatus is the state of the post’s latest non-fingerprint analysis: none when the post has never been analyzed, pending, failed, or complete. storyboard is null until a complete analysis with scenes exists.
retention.organic follows the post insights contract: status and reason are paired — available with reason: null means an Instagram snapshot exists; no_data with never_fetched means none was stored; no_data with unsupported_platform means the post is not Instagram.
retention.paid sums the post’s video paid metrics across all of its boosts: impressions, three-second views, and watch-through quartile counters (videoP25Views … videoP100Views), plus hookRatePct (three-second views ÷ impressions) and completionRatePct (completes ÷ impressions), both as percentages from 0 to 100. Paid metrics are video-level, so every crossposted sibling post of one video reports the same paid block. no_data with reason no_paid_metrics means the video has no reported paid metrics.
curl --request GET \
--url https://dashboard.launchpointhq.com/api/v1/posts/{id}/analysis \
--header 'x-api-key: <api-key>'import requests
url = "https://dashboard.launchpointhq.com/api/v1/posts/{id}/analysis"
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/posts/{id}/analysis', 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/posts/{id}/analysis",
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/posts/{id}/analysis"
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/posts/{id}/analysis")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://dashboard.launchpointhq.com/api/v1/posts/{id}/analysis")
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": {
"id": "post_demo_4k9",
"analysisStatus": "complete",
"analyzedAt": 1786183200000,
"durationSeconds": 14.2,
"storyboard": [
{
"startMs": 0,
"endMs": 6400,
"description": "A person reacts in surprise to the product on a kitchen counter.",
"transcript": "Wait, this actually works?",
"textOnScreen": null,
"sellsProduct": true
},
{
"startMs": 6400,
"endMs": 14200,
"description": "Close-up demo of the product with a price overlay.",
"transcript": null,
"textOnScreen": "Only $19",
"sellsProduct": true
}
],
"retention": {
"organic": {
"status": "available",
"reason": null,
"durationSeconds": 14.2,
"hookRatePct": 68.6,
"skipRatePct": 31.4,
"avgWatchTimeMs": 14360,
"totalWatchTimeMs": 184520000,
"updatedAt": 1786089600000
},
"paid": {
"status": "available",
"reason": null,
"daysLive": 12,
"throughDate": "2026-09-18",
"impressions": 245000,
"video3sViews": 121000,
"videoP25Views": 88000,
"videoP50Views": 54000,
"videoP75Views": 31000,
"videoP100Views": 19000,
"hookRatePct": 49.4,
"completionRatePct": 7.8
}
}
}
}