curl --request GET \
--url https://api.superx.so/v1/inspiration/media \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.superx.so/v1/inspiration/media"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.superx.so/v1/inspiration/media', 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.superx.so/v1/inspiration/media",
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.superx.so/v1/inspiration/media"
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.superx.so/v1/inspiration/media")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.superx.so/v1/inspiration/media")
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": "ig_3421887766",
"platform": "instagram",
"title": "3 hooks that made this reel go to 2M",
"caption": "The first second is everything.",
"summary": "Creator breaks down three opening lines and why each one holds attention.",
"content_type": "educational",
"source_url": "https://instagram.com/p/Cxyz123",
"author_username": "hookschool",
"author_url": "https://instagram.com/hookschool",
"posted_at": "2026-08-28T12:11:00.000Z",
"like_count": 48211,
"view_count": 2041882,
"comment_count": 611,
"share_count": 2044,
"engagement_tier": "high",
"score": 0.7412
}
],
"meta": {
"mode": "search",
"total": 120
}
}{
"error": {
"code": "invalid_parameter",
"message": "since must be a UTC ISO-8601 timestamp"
}
}{
"error": {
"code": "invalid_api_key",
"message": "Unknown or revoked API key"
}
}{
"error": "subscription_required: The SuperX API requires an active subscription"
}{
"error": {
"code": "rate_limited",
"message": "Rate limit exceeded for the Pro plan (30 requests/min). Upgrade for higher limits.",
"retry_after": 42
}
}{
"error": {
"code": "internal_error",
"message": "Failed to fetch posts"
}
}{
"error": {
"code": "upstream_unavailable",
"message": "The scheduling service is temporarily unavailable. Retry with the same Idempotency-Key."
}
}Search the inspiration media index
Search the cross-platform media index behind the SuperX app’s Inspiration > Media tab: short-form video and image posts from X, Instagram, YouTube, Threads, Reddit and LinkedIn, with captions, a content summary and engagement counts. Use it for visual format and hook research, never to copy.
Media file URLs are not exposed through the API; open source_url
for the original post.
Owner-scoped, so there is no account_id. Omit q to BROWSE the
newest media instead of searching; meta.mode reports which ran, and
only search results carry a score. Unlike the app there is no
personalisation: the app fills an empty search box from the signed-in
person’s profile and click history, which an owner-scoped key has no
equivalent of.
There is NO pagination: the index returns at most 120 items per
query, and limit only trims that. Ask for the 120 and filter on
your side rather than looking for a page parameter.
Counts as a read and costs no enrichment units. The media index has
two caps of its own, per account: a burst of 20 refilling one every
3 seconds, and 500 FRESH searches per UTC day. Repeats of a recent
identical search are served from a short-lived cache and do not count
against the daily cap. Both return 429 rate_limited with
Retry-After.
curl --request GET \
--url https://api.superx.so/v1/inspiration/media \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.superx.so/v1/inspiration/media"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.superx.so/v1/inspiration/media', 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.superx.so/v1/inspiration/media",
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.superx.so/v1/inspiration/media"
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.superx.so/v1/inspiration/media")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.superx.so/v1/inspiration/media")
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": "ig_3421887766",
"platform": "instagram",
"title": "3 hooks that made this reel go to 2M",
"caption": "The first second is everything.",
"summary": "Creator breaks down three opening lines and why each one holds attention.",
"content_type": "educational",
"source_url": "https://instagram.com/p/Cxyz123",
"author_username": "hookschool",
"author_url": "https://instagram.com/hookschool",
"posted_at": "2026-08-28T12:11:00.000Z",
"like_count": 48211,
"view_count": 2041882,
"comment_count": 611,
"share_count": 2044,
"engagement_tier": "high",
"score": 0.7412
}
],
"meta": {
"mode": "search",
"total": 120
}
}{
"error": {
"code": "invalid_parameter",
"message": "since must be a UTC ISO-8601 timestamp"
}
}{
"error": {
"code": "invalid_api_key",
"message": "Unknown or revoked API key"
}
}{
"error": "subscription_required: The SuperX API requires an active subscription"
}{
"error": {
"code": "rate_limited",
"message": "Rate limit exceeded for the Pro plan (30 requests/min). Upgrade for higher limits.",
"retry_after": 42
}
}{
"error": {
"code": "internal_error",
"message": "Failed to fetch posts"
}
}{
"error": {
"code": "upstream_unavailable",
"message": "The scheduling service is temporarily unavailable. Retry with the same Idempotency-Key."
}
}Authorizations
A SuperX API key ("sxk_..."), created in the SuperX app under Account > API / MCP / CLI. Keys are server-side secrets.
Query Parameters
What to search for (max 300 characters). Omit to browse the newest media.
300Comma-separated platforms to include. Default:
instagram,youtube,x,threads.
"youtube,instagram"
How recent the media must be.
all, 24h, 7d, 30d Media kind.
all, video, image Free-text content-type label as stored in the index (max 50 characters). There is no enumerated list: a label the index does not use returns zero items and still counts against the daily search cap, so leave it off unless you know the label.
50Items to return (1-120). 120 is everything one query can return.
1 <= x <= 120