curl --request GET \
--url https://api.superx.so/v1/inspiration \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.superx.so/v1/inspiration"
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', 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",
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"
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")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.superx.so/v1/inspiration")
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": "1938765432109876543",
"url": "https://x.com/buildersam/status/1938765432109876543",
"text": "I built my first product in 30 days with zero audience. Here is exactly what I would do differently:",
"posted_at": "2026-06-20T15:04:00.000Z",
"lang": "en",
"likes": 4211,
"replies": 312,
"reposts": 388,
"bookmarks": 1904,
"impressions": 512000,
"outlier_score": 14.2,
"author": {
"handle": "buildersam",
"name": "Sam Fields",
"followers": 8421,
"verified": true
}
}
],
"pagination": {
"page": 1,
"limit": 20,
"has_more": true
}
}{
"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": "accounts_unavailable",
"message": "Account information is temporarily unavailable. Try again shortly."
}
}Search the inspiration library
Search a library of 50M+ real high-performing posts by topic. Use the results for structures, hooks and angles to remix, never to copy.
The library is user-level, so there is no account_id parameter.
Results are relevance-ranked: the strongest matches come first, more
loosely related posts after. A page can return fewer posts than
limit once weak and promotional matches are removed. Pagination is
heuristic; has_more means more library pages may exist (pages run
1 to 7).
Each result carries an outlier_score: the post’s engagement rate vs
the expected rate for its author’s follower tier, x10 (10 = expected,
higher = overperformed). Null when the author’s follower count is
unknown.
curl --request GET \
--url https://api.superx.so/v1/inspiration \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.superx.so/v1/inspiration"
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', 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",
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"
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")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.superx.so/v1/inspiration")
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": "1938765432109876543",
"url": "https://x.com/buildersam/status/1938765432109876543",
"text": "I built my first product in 30 days with zero audience. Here is exactly what I would do differently:",
"posted_at": "2026-06-20T15:04:00.000Z",
"lang": "en",
"likes": 4211,
"replies": 312,
"reposts": 388,
"bookmarks": 1904,
"impressions": 512000,
"outlier_score": 14.2,
"author": {
"handle": "buildersam",
"name": "Sam Fields",
"followers": 8421,
"verified": true
}
}
],
"pagination": {
"page": 1,
"limit": 20,
"has_more": true
}
}{
"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": "accounts_unavailable",
"message": "Account information is temporarily unavailable. Try again shortly."
}
}Authorizations
A SuperX API key ("sxk_..."), created in the SuperX app under Account > API / MCP / CLI. Keys are server-side secrets.
Query Parameters
Topic or theme to search for (1-200 characters).
1 - 200Result ordering. relevant (default) is relevance-ranked, the
strongest matches first.
relevant, recent, likes, reposts, impressions, outlier Only posts with at least this many likes.
x >= 0Only posts with at least this many reposts.
x >= 0Only posts with at least this many replies.
x >= 0Only posts with at least this many bookmarks.
x >= 0Only posts with at least this many impressions.
x >= 0Only posts with at least this many characters.
x >= 0Only posts from authors with at least this many followers.
x >= 0Only posts from authors with at most this many followers.
x >= 0UTC ISO-8601 lower bound (explicit Z or offset required).
UTC ISO-8601 upper bound (explicit Z or offset required).
Language code.
Comma-separated topics to exclude (keyword filter).
"crypto,politics"
Maximum posts per page, 1 to 50. Pages can be shorter after filtering.
1 <= x <= 501-based page number, 1 to 7.
1 <= x <= 7