Section · API
Open API.
Every endpoint is free, public, requires no authentication, and serves permissive CORS. Use the dataset as a research substrate, embed records in your publication, or subscribe to feeds. Be kind: cache responses for at least an hour, identify your script in the User-Agent header, and email if you're hitting it heavily.
Endpoints
/api/dataset.jsonapplication/jsonFull corpus index. Schema-versioned JSON with every record's metadata, source links, tags, and computed fields.
status, Filter to one of: unresolved, explained, contestedcommand, Filter to one of: NASA, CENTCOM, INDOPACOM, EUCOM, FBI, STATE, DOD, OTHERdecade, Filter to a decade like '1970s', '2020s'media, Filter to records with at least one of: video, image, audio, document
curl -s 'https://socialmediaforaliens.com/api/dataset.json?status=unresolved&command=CENTCOM' | jq '.records | length'
/api/dataset.csvtext/csvSame corpus as a flat CSV. One row per record. List fields are pipe-delimited.
status, Same as JSON endpointcommand, Same as JSON endpointdecade, Same as JSON endpointmedia, Same as JSON endpoint
curl -s 'https://socialmediaforaliens.com/api/dataset.csv?command=NASA' -o nasa-records.csv
/rss.xmlapplication/rss+xmlSite-wide RSS, every record release plus every digest entry, reverse-chronological.
curl -s 'https://socialmediaforaliens.com/rss.xml' | head -40
/rss/[command]application/rss+xmlPer-source-command RSS. Replace [command] with one of: nasa, centcom, indopacom, eucom, fbi, state, dod.
curl -s 'https://socialmediaforaliens.com/rss/centcom'
/calendar.icstext/calendariCal feed of UAP On This Day, recurring annual anniversary entries for every record.
curl -s 'https://socialmediaforaliens.com/calendar.ics' | head -20
/api/oembedapplication/jsonoEmbed provider endpoint. Substack, Ghost, WordPress, and other oEmbed-aware editors auto-discover this when you paste a file URL.
url, A full file URL on this siteformat, Only 'json' supported
curl -s 'https://socialmediaforaliens.com/api/oembed?url=https%3A%2F%2Fsocialmediaforaliens.com%2Ffiles%2Fnimitz-tic-tac-2004'
/sitemap.xmlapplication/xmlXML sitemap of every public URL on the site.
curl -s 'https://socialmediaforaliens.com/sitemap.xml' | head
Python
import requests
# Load every unresolved CENTCOM case
r = requests.get(
"https://socialmediaforaliens.com/api/dataset.json",
params={"status": "unresolved", "command": "CENTCOM"},
)
records = r.json()["records"]
for rec in records:
print(rec["incidentDate"], rec["title"], rec["sourceLinks"][0]["url"])JavaScript / TypeScript
// Load the full corpus and group by decade
const r = await fetch("https://socialmediaforaliens.com/api/dataset.json");
const { records } = await r.json();
const byDecade = records.reduce((acc, rec) => {
const year = parseInt(rec.incidentDate.slice(0, 4), 10);
const decade = `${Math.floor(year / 10) * 10}s`;
(acc[decade] ??= []).push(rec);
return acc;
}, {});
console.log(byDecade);Citation
For published research using the dataset, cite both the originating agency for individual records (use the per-file Cite widget) and the dataset itself:
Social Media for Aliens. (2026). Open dataset of declassified UAP records [JSON/CSV]. https://socialmediaforaliens.com/data
Tell us if you publish something using the dataset: hello@socialmediaforaliens.com