SpaceNexus API v1
The SpaceNexus API provides programmatic access to comprehensive space industry data. Build applications powered by real-time launch schedules, satellite tracking, company intelligence, market data, regulatory filings, and more. All endpoints return JSON and follow RESTful conventions.
Base URL: https://spacenexus.us/api/v1
Companies
Access profiles for space industry companies including public market data, focus areas, and employee counts.
/companiesNews
Fetch space news articles aggregated from 50+ sources with category filtering.
/newsLaunches
Track upcoming orbital launches with provider filtering and launch window details.
/launchesMarket
Access stock market data for publicly traded space companies.
/marketSatellites
Query satellite catalog data with orbit type, operator, and status filtering.
/satellitesCompliance
Track proposed regulations, policy changes, and comment deadlines from space regulatory agencies.
/regulatoryProcurement
Access government contracts, RFPs, and awards from NASA, USSF, DARPA, and other agencies.
/contractsLaunch Vehicles
Compare launch vehicle specifications including cost-per-kg, payload capacity, and reusability.
/launch-vehiclesWeather
Real-time space weather data including solar wind speed, geomagnetic indices, and forecasts from NOAA.
/space-weatherOpportunities
Enterprise-only endpoint for business opportunities, partnerships, and investment leads in the space sector.
/opportunitiesSpaceX
Real-time SpaceX launch data, rocket fleet information, and Starlink constellation statistics sourced from the SpaceX API.
/spacexPodcasts
Aggregated space industry podcast episodes from leading shows, with titles, descriptions, and direct listen links.
/podcastsEarth Events (EONET)
NASA Earth Observatory Natural Event Tracker data including wildfires, severe storms, volcanic activity, and other natural events relevant to satellite operations.
/eonetPulse
A single-call snapshot of the current state of the space industry: latest news, next launch, market status, space weather, and active satellite count.
/pulsePlatform Stats
High-level SpaceNexus platform statistics including data coverage metrics, company profiles tracked, and content counts.
/statsLivestreams
Detect and list active space-related livestreams from YouTube and other platforms, including launch webcasts and ISS feeds.
/livestreamsAuthentication
All API requests must include a valid API key. You can pass it using either of these methods:
Option 1: X-API-Key Header (recommended)
X-API-Key: snx_YOUR_API_KEYOption 2: Bearer Token
Authorization: Bearer snx_YOUR_API_KEYAPI keys use the prefix snx_ and can be generated from the Developer Portal. Keys are hashed before storage and shown only once at creation time.
Response Format
All responses follow a consistent JSON structure:
Success (200)
{
"success": true,
"data": [
"..."
],
"pagination": {
"limit": 20,
"offset": 0,
"total": 150
}
}Error (4xx / 5xx)
{
"success": false,
"error": {
"code": "RATE_LIMITED",
"message": "Per-minute rate limit exceeded."
}
}Rate Limits
Rate limits are enforced per API key. Every response includes rate limit headers:
| Header | Description |
|---|---|
X-Request-Id | Unique request identifier for debugging |
X-RateLimit-Limit | Your per-minute rate limit |
X-RateLimit-Remaining | Remaining calls in current window (on 429 responses) |
X-RateLimit-Reset | Seconds until the rate limit resets (on 429 responses) |
Tier Limits
| Tier | Monthly Limit | Per-Minute Limit | Max Keys | Price |
|---|---|---|---|---|
| Developer | 5,000 | 60 | 3 | Included with Pro |
| Business | 50,000 | 300 | 10 | Included with Enterprise |
| Enterprise | Unlimited | 1,000 | Unlimited | Included with Enterprise |
Error Codes
UNAUTHORIZEDReturned when the API key is missing, malformed, revoked, or expired.
{
"success": false,
"error": {
"code": "UNAUTHORIZED",
"message": "Missing or invalid API key. Provide a valid key via Authorization: Bearer snx_... or X-API-Key header."
}
}FORBIDDENReturned when the endpoint requires a higher API tier than your current key.
{
"success": false,
"error": {
"code": "FORBIDDEN",
"message": "The opportunities endpoint requires an Enterprise API tier. Please upgrade your plan."
}
}RATE_LIMITEDReturned when you have exceeded your per-minute or monthly rate limit. Check X-RateLimit-Reset header for retry timing.
{
"success": false,
"error": {
"code": "RATE_LIMITED",
"message": "Per-minute rate limit exceeded. Please slow down."
}
}INTERNAL_ERRORReturned when the server encounters an unrecoverable error. Contact support if this persists.
{
"success": false,
"error": {
"code": "INTERNAL_ERROR",
"message": "An unexpected error occurred."
}
}Companies
Access profiles for space industry companies including public market data, focus areas, and employee counts.
/api/v1/companiesAllDescription
Retrieve a paginated list of space company profiles. Results are ordered by public status, market cap descending, then name ascending. Focus areas and sub-sectors are returned as parsed arrays.
Authentication
Requires API key via X-API-Key header or Authorization: Bearer snx_... header.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
limit | integer | Optional | Number of results to return (max 100)(default: 20) |
offset | integer | Optional | Number of results to skip for pagination(default: 0) |
sector | string | Optional | Filter by focus area / sector keyword (e.g. "Launch Services", "Satellite Manufacturing") |
search | string | Optional | Search by company name (case-insensitive partial match) |
Example Response
{
"success": true,
"data": [
{
"id": "clx1abc123",
"slug": "spacex",
"name": "SpaceX",
"description": "American spacecraft manufacturer and space launch provider.",
"country": "United States",
"headquarters": "Hawthorne, CA",
"founded": 2002,
"website": "https://www.spacex.com",
"isPublic": false,
"ticker": null,
"exchange": null,
"marketCap": null,
"stockPrice": null,
"isPreIPO": true,
"valuation": 350000000000,
"focusAreas": [
"Launch Services",
"Satellite Internet",
"Human Spaceflight"
],
"subSectors": null,
"employeeCount": 13000
}
],
"pagination": {
"limit": 20,
"offset": 0,
"total": 101
}
}Code Examples
curl -X GET "https://spacenexus.us/api/v1/companies?limit=10&search=space" \
-H "X-API-Key: snx_YOUR_API_KEY"News
Fetch space news articles aggregated from 50+ sources with category filtering.
/api/v1/newsAllDescription
Retrieve a paginated list of aggregated space news articles from 50+ RSS feeds and blog sources. Articles can be filtered by category.
Authentication
Requires API key via X-API-Key header or Authorization: Bearer snx_... header.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
limit | integer | Optional | Number of results to return (max 100)(default: 20) |
offset | integer | Optional | Number of results to skip for pagination(default: 0) |
category | string | Optional | Filter by news category (e.g. "launch", "policy", "science", "business") |
Example Response
{
"success": true,
"data": [
{
"id": "clx2def456",
"title": "SpaceX Launches 23 Starlink Satellites on Falcon 9",
"summary": "SpaceX successfully launched 23 Starlink satellites from Cape Canaveral.",
"url": "https://example.com/article",
"source": "SpaceNews",
"category": "launch",
"imageUrl": "https://example.com/image.jpg",
"publishedAt": "2026-02-20T14:30:00.000Z"
}
],
"pagination": {
"limit": 20,
"offset": 0,
"total": 1523
}
}Code Examples
curl -X GET "https://spacenexus.us/api/v1/news?limit=5&category=launch" \
-H "X-API-Key: snx_YOUR_API_KEY"Launches
Track upcoming orbital launches with provider filtering and launch window details.
/api/v1/launchesAllDescription
Retrieve upcoming orbital launches sorted by launch date ascending. Only launches with status "upcoming", "go", "tbc", or "tbd" and a future launch date are returned.
Authentication
Requires API key via X-API-Key header or Authorization: Bearer snx_... header.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
limit | integer | Optional | Number of results to return (max 100)(default: 20) |
offset | integer | Optional | Number of results to skip for pagination(default: 0) |
provider | string | Optional | Filter by launch provider / agency name (case-insensitive partial match) |
Example Response
{
"success": true,
"data": [
{
"id": "clx3ghi789",
"name": "Falcon 9 | Starlink Group 12-3",
"type": "Normal",
"status": "go",
"launchDate": "2026-02-25T18:00:00.000Z",
"agency": "SpaceX",
"location": "Cape Canaveral SFS, FL, USA",
"mission": "Starlink Group 12-3",
"description": "SpaceX Falcon 9 launch carrying Starlink satellites.",
"country": "USA",
"rocket": "Falcon 9 Block 5",
"windowStart": "2026-02-25T18:00:00.000Z",
"windowEnd": "2026-02-25T22:00:00.000Z",
"launchDatePrecision": "hour"
}
],
"pagination": {
"limit": 20,
"offset": 0,
"total": 47
}
}Code Examples
curl -X GET "https://spacenexus.us/api/v1/launches?limit=5&provider=SpaceX" \
-H "X-API-Key: snx_YOUR_API_KEY"Market
Access stock market data for publicly traded space companies.
/api/v1/marketAllDescription
Retrieve stock market data for publicly traded space companies. Without a ticker parameter, returns all public companies sorted by market cap. With a ticker, returns data for a single company.
Authentication
Requires API key via X-API-Key header or Authorization: Bearer snx_... header.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
ticker | string | Optional | Company ticker symbol (e.g. "RKLB", "SPCE"). If omitted, returns all public companies. |
Example Response
{
"success": true,
"data": [
{
"id": "clx4jkl012",
"name": "Rocket Lab USA",
"ticker": "RKLB",
"exchange": "NASDAQ",
"marketCap": 12500000000,
"stockPrice": 26.75,
"priceChange24h": 1.23,
"country": "United States"
}
],
"pagination": {
"limit": 25,
"offset": 0,
"total": 25
}
}Code Examples
curl -X GET "https://spacenexus.us/api/v1/market?ticker=RKLB" \
-H "X-API-Key: snx_YOUR_API_KEY"Satellites
Query satellite catalog data with orbit type, operator, and status filtering.
/api/v1/satellitesAllDescription
Retrieve satellite catalog data. Default limit is 50 (max 200). Supports filtering by orbit type, operator, and operational status.
Authentication
Requires API key via X-API-Key header or Authorization: Bearer snx_... header.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
limit | integer | Optional | Number of results to return (max 200)(default: 50) |
offset | integer | Optional | Number of results to skip for pagination(default: 0) |
orbitType | stringLEOMEOGEOHEOSSOPolar | Optional | Filter by orbit type |
operator | string | Optional | Filter by satellite operator (case-insensitive partial match) |
status | stringactiveinactivedeorbited | Optional | Filter by operational status |
Example Response
{
"success": true,
"data": [
{
"id": "sat-001",
"name": "Starlink-5001",
"noradId": "58001",
"orbitType": "LEO",
"altitude": 550,
"velocity": 7.59,
"operator": "SpaceX",
"country": "United States",
"launchDate": "2025-06-15",
"status": "active",
"purpose": "Communications",
"mass": 295,
"period": 95.7,
"inclination": 53.2,
"apogee": 555,
"perigee": 545,
"description": "Starlink broadband satellite."
}
],
"pagination": {
"limit": 50,
"offset": 0,
"total": 8420
}
}Code Examples
curl -X GET "https://spacenexus.us/api/v1/satellites?limit=10&orbitType=GEO" \
-H "X-API-Key: snx_YOUR_API_KEY"Compliance
Track proposed regulations, policy changes, and comment deadlines from space regulatory agencies.
/api/v1/regulatoryAllDescription
Retrieve proposed regulations and policy changes relevant to the space industry. Results are ordered by published date descending.
Authentication
Requires API key via X-API-Key header or Authorization: Bearer snx_... header.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
limit | integer | Optional | Number of results to return (max 100)(default: 20) |
offset | integer | Optional | Number of results to skip for pagination(default: 0) |
category | string | Optional | Filter by regulation category |
agency | string | Optional | Filter by issuing agency (e.g. "FAA", "FCC", "NOAA") |
Example Response
{
"success": true,
"data": [
{
"id": "clx5mno345",
"slug": "faa-orbital-debris-mitigation-2026",
"title": "FAA Orbital Debris Mitigation Requirements Update",
"summary": "Proposed rule updating post-mission disposal requirements for commercial launch operators.",
"agency": "FAA",
"type": "Proposed Rule",
"category": "Debris Mitigation",
"impactSeverity": "high",
"publishedDate": "2026-01-15T00:00:00.000Z",
"commentDeadline": "2026-04-15T00:00:00.000Z",
"effectiveDate": null,
"status": "Open for Comment",
"sourceUrl": "https://www.federalregister.gov/example"
}
],
"pagination": {
"limit": 20,
"offset": 0,
"total": 34
}
}Code Examples
curl -X GET "https://spacenexus.us/api/v1/regulatory?agency=FAA&limit=10" \
-H "X-API-Key: snx_YOUR_API_KEY"Procurement
Access government contracts, RFPs, and awards from NASA, USSF, DARPA, and other agencies.
/api/v1/contractsAllDescription
Retrieve government contracts and procurement opportunities from space-related agencies. Supports filtering by agency, contract type, status, and category.
Authentication
Requires API key via X-API-Key header or Authorization: Bearer snx_... header.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
limit | integer | Optional | Number of results to return (max 100)(default: 20) |
offset | integer | Optional | Number of results to skip for pagination(default: 0) |
agency | string | Optional | Filter by agency (e.g. "NASA", "USSF", "DARPA", "NRO") |
type | string | Optional | Filter by contract type (e.g. "RFP", "RFI", "Award", "BAA") |
status | string | Optional | Filter by contract status (e.g. "open", "closed", "awarded") |
category | string | Optional | Filter by contract category |
Example Response
{
"success": true,
"data": [
{
"id": "clx6pqr678",
"slug": "nasa-cislunar-comm-services-2026",
"title": "Cislunar Communication Services",
"agency": "NASA",
"type": "RFP",
"value": "$150M",
"status": "open",
"postedDate": "2026-02-01T00:00:00.000Z",
"dueDate": "2026-05-01T00:00:00.000Z"
}
],
"pagination": {
"limit": 20,
"offset": 0,
"total": 67
}
}Code Examples
curl -X GET "https://spacenexus.us/api/v1/contracts?agency=NASA&status=open" \
-H "X-API-Key: snx_YOUR_API_KEY"Launch Vehicles
Compare launch vehicle specifications including cost-per-kg, payload capacity, and reusability.
/api/v1/launch-vehiclesAllDescription
Retrieve launch vehicle specifications sorted by cost per kg to LEO ascending. Includes payload capacity, cost estimates to various orbits, and reusability status.
Authentication
Requires API key via X-API-Key header or Authorization: Bearer snx_... header.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
limit | integer | Optional | Number of results to return (max 100)(default: 20) |
offset | integer | Optional | Number of results to skip for pagination(default: 0) |
status | string | Optional | Filter by vehicle status (e.g. "operational", "development", "retired") |
country | string | Optional | Filter by country code (e.g. "US", "CN", "EU") |
Example Response
{
"success": true,
"data": [
{
"id": "clx7stu901",
"slug": "falcon-9",
"name": "SpaceX",
"vehicle": "Falcon 9 Block 5",
"costPerKgToLEO": 2720,
"costPerKgToGEO": 7500,
"costPerKgToMoon": null,
"costPerKgToMars": null,
"payloadToLEO": 22800,
"status": "operational",
"country": "US",
"reusable": true
}
],
"pagination": {
"limit": 20,
"offset": 0,
"total": 35
}
}Code Examples
curl -X GET "https://spacenexus.us/api/v1/launch-vehicles?status=operational&limit=10" \
-H "X-API-Key: snx_YOUR_API_KEY"Weather
Real-time space weather data including solar wind speed, geomagnetic indices, and forecasts from NOAA.
/api/v1/space-weatherAllDescription
Retrieve current space weather conditions and forecasts sourced from NOAA. Includes solar wind data, geomagnetic activity indices (Kp, Dst), solar flare alerts, and 3-day forecasts. No pagination parameters -- returns a single summary object.
Authentication
Requires API key via X-API-Key header or Authorization: Bearer snx_... header.
Parameters
No parameters required.
Example Response
{
"success": true,
"data": {
"solarWind": {
"speed": 425.3,
"density": 4.2,
"bz": -2.1,
"timestamp": "2026-02-20T15:00:00.000Z"
},
"geomagneticActivity": {
"kpIndex": 3,
"kpText": "Unsettled",
"dstIndex": -15
},
"solarFlares": {
"last24h": 2,
"maxClass": "C2.4"
},
"forecast": {
"next24h": "Minor geomagnetic activity possible.",
"next3days": "G1 storm watch in effect for Feb 22."
}
}
}Code Examples
curl -X GET "https://spacenexus.us/api/v1/space-weather" \
-H "X-API-Key: snx_YOUR_API_KEY"Opportunities
Enterprise-only endpoint for business opportunities, partnerships, and investment leads in the space sector.
/api/v1/opportunitiesEnterpriseDescription
Retrieve business opportunities in the space industry. This endpoint requires an Enterprise API tier -- Developer and Business tiers will receive a 403 Forbidden response.
Authentication
Requires API key via X-API-Key header or Authorization: Bearer snx_... header.Enterprise API tier required.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
limit | integer | Optional | Number of results to return (max 100)(default: 20) |
offset | integer | Optional | Number of results to skip for pagination(default: 0) |
type | string | Optional | Filter by opportunity type |
category | string | Optional | Filter by category |
sector | string | Optional | Filter by sector |
Example Response
{
"success": true,
"data": [
{
"id": "clx8vwx234",
"slug": "cislunar-logistics-partnership",
"title": "Cislunar Logistics Partnership Opportunity",
"description": "Seeking partners for a cislunar cargo delivery service launching Q4 2027.",
"type": "Partnership",
"category": "Transportation",
"estimatedValue": "$25M - $50M",
"status": "Open"
}
],
"pagination": {
"limit": 20,
"offset": 0,
"total": 12
}
}Code Examples
curl -X GET "https://spacenexus.us/api/v1/opportunities?type=Partnership&limit=10" \
-H "X-API-Key: snx_YOUR_API_KEY"SpaceX
Real-time SpaceX launch data, rocket fleet information, and Starlink constellation statistics sourced from the SpaceX API.
/api/v1/spacexAllDescription
Returns SpaceX upcoming and recent launches, rocket fleet details, the latest launch, and current Starlink satellite count. Data is cached for 5 minutes and sourced from the SpaceX public API.
Authentication
Requires API key via X-API-Key header or Authorization: Bearer snx_... header.
Parameters
No parameters required.
Example Response
{
"launches": [
{
"id": "61d5ea5b",
"name": "Starlink Group 12-5",
"date_utc": "2026-03-20T14:30:00.000Z",
"success": null,
"rocket": "Falcon 9",
"launchpad": "KSC LC-39A"
}
],
"latestLaunch": {
"id": "61d5ea4a",
"name": "Starlink Group 12-4",
"date_utc": "2026-03-15T09:12:00.000Z",
"success": true,
"rocket": "Falcon 9"
},
"rockets": [
{
"id": "5e9d0d95eda69955f709bf9d",
"name": "Falcon 9",
"type": "rocket",
"active": true
}
],
"starlinkCount": 7284,
"fetchedAt": "2026-03-17T12:00:00.000Z"
}Code Examples
curl -X GET "https://spacenexus.us/api/v1/spacex" \
-H "X-API-Key: snx_YOUR_API_KEY"Podcasts
Aggregated space industry podcast episodes from leading shows, with titles, descriptions, and direct listen links.
/api/v1/podcastsAllDescription
Returns the latest episodes from curated space industry podcasts including show metadata, episode titles, descriptions, publication dates, audio URLs, and duration. Results are sorted by publication date descending.
Authentication
Requires API key via X-API-Key header or Authorization: Bearer snx_... header.
Parameters
No parameters required.
Example Response
{
"episodes": [
{
"title": "The Future of Reusable Launch Vehicles",
"show": "The Space Show",
"publishedAt": "2026-03-16T08:00:00.000Z",
"duration": "1:12:34",
"url": "https://example.com/episode-123",
"description": "Dr. Jane Smith discusses advances in reusable launch vehicle technology..."
}
],
"total": 48
}Code Examples
curl -X GET "https://spacenexus.us/api/v1/podcasts" \
-H "X-API-Key: snx_YOUR_API_KEY"Earth Events (EONET)
NASA Earth Observatory Natural Event Tracker data including wildfires, severe storms, volcanic activity, and other natural events relevant to satellite operations.
/api/v1/eonetAllDescription
Returns active natural events from NASA's Earth Observatory Natural Event Tracker (EONET), including wildfires, severe storms, volcanic eruptions, and sea/lake ice events. Useful for satellite tasking, ground station impact assessment, and situational awareness. Data is cached for 30 minutes.
Authentication
Requires API key via X-API-Key header or Authorization: Bearer snx_... header.
Parameters
No parameters required.
Example Response
{
"events": [
{
"id": "EONET_6423",
"title": "Wildfire - California, USA",
"category": "Wildfires",
"source": "InciWeb",
"link": "https://inciweb.wildfire.gov/incident-information/cabnf-example",
"date": "2026-03-15T00:00:00Z",
"coordinates": [
-118.24,
34.05
]
}
],
"total": 23,
"categories": [
"Wildfires",
"Severe Storms",
"Volcanoes",
"Sea and Lake Ice"
]
}Code Examples
curl -X GET "https://spacenexus.us/api/v1/eonet" \
-H "X-API-Key: snx_YOUR_API_KEY"Pulse
A single-call snapshot of the current state of the space industry: latest news, next launch, market status, space weather, and active satellite count.
/api/v1/pulseAllDescription
Returns a real-time snapshot of key space industry indicators in a single request. Includes the latest headline, next upcoming launch, stock market status for space companies, current space weather conditions, and active satellite count. Ideal for dashboards and status displays.
Authentication
Requires API key via X-API-Key header or Authorization: Bearer snx_... header.
Parameters
No parameters required.
Example Response
{
"latestNews": {
"title": "SpaceX launches 60 Starlink satellites from Cape Canaveral",
"source": "SpaceNews",
"url": "https://spacenews.com/example",
"publishedAt": "2026-03-17T10:30:00Z"
},
"nextLaunch": {
"name": "Falcon 9 | Starlink Group 12-5",
"date": "2026-03-20T14:30:00Z",
"agency": "SpaceX",
"location": "Cape Canaveral SLC-40",
"status": "Go"
},
"marketStatus": {
"status": "up",
"summary": "Space sector up 1.2% today led by RKLB (+3.4%)"
},
"spaceWeather": {
"kpIndex": 3,
"solarFlareRisk": "Low",
"geomagneticStorm": false
},
"activeSatellites": 10847
}Code Examples
curl -X GET "https://spacenexus.us/api/v1/pulse" \
-H "X-API-Key: snx_YOUR_API_KEY"Platform Stats
High-level SpaceNexus platform statistics including data coverage metrics, company profiles tracked, and content counts.
/api/v1/statsAllDescription
Returns aggregate platform statistics including total company profiles, news articles tracked, blog posts published, RSS source count, and data module counts. Useful for understanding SpaceNexus data coverage and freshness.
Authentication
Requires API key via X-API-Key header or Authorization: Bearer snx_... header.
Parameters
No parameters required.
Example Response
{
"companyProfiles": 127,
"newsArticles": 4893,
"totalBlogArticles": 28,
"totalRssSources": 97,
"dataModules": 35
}Code Examples
curl -X GET "https://spacenexus.us/api/v1/stats" \
-H "X-API-Key: snx_YOUR_API_KEY"Livestreams
Detect and list active space-related livestreams from YouTube and other platforms, including launch webcasts and ISS feeds.
/api/v1/livestreamsAllDescription
Detects currently active space-related livestreams from major channels including SpaceX, NASA, Rocket Lab, and community streamers. Returns stream metadata including title, channel, viewer count, and embed URL. Data is cached for 2 minutes.
Authentication
Requires API key via X-API-Key header or Authorization: Bearer snx_... header.
Parameters
No parameters required.
Example Response
{
"streams": [
{
"id": "yt_abc123",
"title": "SpaceX Starlink Group 12-5 Launch",
"channel": "SpaceX",
"platform": "youtube",
"url": "https://www.youtube.com/watch?v=abc123",
"viewers": 142000,
"startedAt": "2026-03-17T14:00:00Z",
"thumbnail": "https://i.ytimg.com/vi/abc123/maxresdefault.jpg"
}
],
"count": 1,
"hasLive": true
}Code Examples
curl -X GET "https://spacenexus.us/api/v1/livestreams" \
-H "X-API-Key: snx_YOUR_API_KEY"Need help? Contact Support | Developer Portal | API Explorer
SpaceNexus API Access
Access the SpaceNexus API for custom integrations and data feeds. Build on top of our comprehensive space industry data.
- RESTful API
- Webhook integrations
- Custom data feeds