Get a dataset
curl --request GET \
--url https://api.superx.so/v1/datasets/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.superx.so/v1/datasets/{id}"
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/datasets/{id}', 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/datasets/{id}",
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/datasets/{id}"
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/datasets/{id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.superx.so/v1/datasets/{id}")
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": "VKcPAVU1FSkx4kzPuehGK",
"title": "Repliers to my launch post",
"source": "repliers",
"status": "ready",
"target_ref": "1234567890123456789",
"x_account_id": "1178367350552305665",
"ask_chat_id": "aB3dEf9",
"columns": [
"handle",
"name",
"bio",
"website",
"followers",
"following",
"location",
"can_dm",
"verified"
],
"row_count": 214,
"scanned_count": 214,
"total_estimate": 214,
"coverage_complete": true,
"has_people": true,
"created_at": "2026-09-05T10:12:00.000Z",
"expires_at": "2026-10-05T10:12:00.000Z",
"coverage": "Scanned all 214 direct replies available (relevance-ranked order).",
"filters": {
"minFollowers": 500
}
}
}{
"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": "dataset_not_found",
"message": "No dataset with that id belongs to this key, or it has expired (datasets are kept for 30 days)"
}
}{
"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"
}
}Datasets
Get a dataset
One dataset’s status, counts and coverage.
Every status answers 200, so this is the endpoint to poll while a
collection runs: collecting carries live progress, failed
carries a failure_note, and ready carries the honest coverage
sentence and the filters the collection applied. The counts on a
collecting dataset are not final.
GET
/
v1
/
datasets
/
{id}
Get a dataset
curl --request GET \
--url https://api.superx.so/v1/datasets/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.superx.so/v1/datasets/{id}"
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/datasets/{id}', 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/datasets/{id}",
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/datasets/{id}"
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/datasets/{id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.superx.so/v1/datasets/{id}")
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": "VKcPAVU1FSkx4kzPuehGK",
"title": "Repliers to my launch post",
"source": "repliers",
"status": "ready",
"target_ref": "1234567890123456789",
"x_account_id": "1178367350552305665",
"ask_chat_id": "aB3dEf9",
"columns": [
"handle",
"name",
"bio",
"website",
"followers",
"following",
"location",
"can_dm",
"verified"
],
"row_count": 214,
"scanned_count": 214,
"total_estimate": 214,
"coverage_complete": true,
"has_people": true,
"created_at": "2026-09-05T10:12:00.000Z",
"expires_at": "2026-10-05T10:12:00.000Z",
"coverage": "Scanned all 214 direct replies available (relevance-ranked order).",
"filters": {
"minFollowers": 500
}
}
}{
"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": "dataset_not_found",
"message": "No dataset with that id belongs to this key, or it has expired (datasets are kept for 30 days)"
}
}{
"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"
}
}Authorizations
A SuperX API key ("sxk_..."), created in the SuperX app under Account > API / MCP / CLI. Keys are server-side secrets.
Path Parameters
The dataset id from GET /v1/datasets.
Pattern:
^[A-Za-z0-9_-]{1,64}$Response
The dataset, whatever its status.
Show child attributes
Show child attributes