Discover/Roberts Space Industries API
live

Roberts Space Industries APIrobertsspaceindustries.com

Access RSI Pledge Store ship listings, manufacturer data, live crowdfunding stats, and Spectrum MOTD via 5 structured endpoints. No auth required.

Endpoint health
verified 4d ago
get_crowdfund_stats
get_ship_manufacturers
get_ships
get_ship_detail
get_motd
5/5 passing latest checkself-healing
Endpoints
5
Updated
26d ago

What is the Roberts Space Industries API?

The Roberts Space Industries API exposes 5 endpoints covering Star Citizen's Pledge Store ship catalog, manufacturer listings, live crowdfunding statistics, and the Spectrum community Message of the Day. The get_ships endpoint returns up to 100 ships with fields like msrp, productionStatus, and purchasable, while get_crowdfund_stats delivers real-time backer counts, total funds raised in cents, and a 7-day daily contribution chart.

Try it

No input parameters required.

api.parse.bot/scraper/8c74a6bc-cc3e-45af-bf9d-55649bf58ab6/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/8c74a6bc-cc3e-45af-bf9d-55649bf58ab6/get_crowdfund_stats' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace robertsspaceindustries-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: RSI SDK — ships, crowdfunding stats, and community MOTD."""
from parse_apis.roberts_space_industries_api import RSI, ShipSummary, Ship, CrowdfundStats, Motd, NotFoundError

client = RSI()

# List ships currently for sale in the Pledge Store
for ship in client.shipsummaries.list(limit=5):
    print(ship.name, ship.msrp, ship.production_status)

# Drill into one ship's full detail via the constructible ShipSummary
summary = client.shipsummaries.list(limit=1).first()
if summary:
    detail = summary.details()
    print(detail.name, detail.manufacturer.name, detail.msrp)
    for paint in detail.paints:
        print(paint.title, paint.slug)

# Fetch a ship directly by slug with typed error handling
try:
    ship = client.ships.get(slug="jhr09qzpxcd6k")
    print(ship.name, ship.manufacturer.name)
except NotFoundError as exc:
    print(f"Ship not found: {exc}")

# Get live crowdfunding statistics
stats = client.crowdfundstatses.get()
print(stats.fans, stats.funds, stats.alpha_slots_left)

# Get the community Message of the Day
motd = client.motds.get()
print(motd.message, motd.last_modified)

print("exercised: shipsummaries.list / shipsummary.details / ships.get / crowdfundstatses.get / motds.get")
All endpoints · 5 totalmissing one? ·

Fetch current crowdfunding statistics including total funds raised (in cents), number of backers (fans), fleet data, alpha slots remaining, and a chart of daily gross contributions for the last 7 days. No parameters required.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "fans": "integer, number of backers",
    "chart": "object keyed by date string, each value has gross (string) and axis (string)",
    "fleet": "nullable string",
    "funds": "integer, total funds raised in cents",
    "alpha_slots_left": "integer, remaining alpha slots"
  },
  "sample": {
    "data": {
      "fans": 6579270,
      "chart": {
        "2026-06-05": {
          "axis": "05",
          "gross": "33753088"
        }
      },
      "fleet": null,
      "funds": 101636564627,
      "alpha_slots_left": 0
    },
    "status": "success"
  }
}

About the Roberts Space Industries API

Ship Catalog and Manufacturers

The get_ships endpoint returns an array of ships currently listed in the RSI Pledge Store, each with id, name, slug, msrp (in cents), purchasable (boolean), and productionStatus. A total integer indicates the full count of available ships. To retrieve deeper data on a specific ship, pass its slug — obtainable from get_ships — to get_ship_detail, which adds manufacturer (an object with name) and paints (an array of available paint options). The get_ship_manufacturers endpoint returns a flat array of manufacturer objects with id and name, useful for building filters or cross-referencing manufacturer identities against ship records.

Crowdfunding Statistics

The get_crowdfund_stats endpoint returns live campaign data: fans (total backer count as an integer), funds (total raised in cents), alpha_slots_left, and a chart object containing daily gross contribution figures for the last 7 days. The fleet field is present but may be null. A success field equal to 1 confirms a valid upstream response. This endpoint requires no inputs and reflects the current live totals as displayed on the RSI website.

Spectrum Message of the Day

The get_motd endpoint retrieves the current Message of the Day from RSI's Spectrum community lobby. The response includes a motd object with a message string and a last_modified Unix timestamp, making it straightforward to detect when the message was last updated. Like get_crowdfund_stats, it takes no input parameters and returns a success integer to indicate response validity.

Reliability & maintenanceVerified

The Roberts Space Industries API is a managed, monitored endpoint for robertsspaceindustries.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when robertsspaceindustries.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official robertsspaceindustries.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4d ago
Latest check
5/5 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Display live Star Citizen crowdfunding milestones (fans, funds, 7-day chart) on a community dashboard.
  • Build a ship comparison tool using msrp, productionStatus, and purchasable fields from get_ships.
  • Populate a ship database with manufacturer attribution by joining get_ship_manufacturers with get_ship_detail results.
  • Alert fans when the Spectrum MOTD changes by polling get_motd and comparing last_modified timestamps.
  • Track alpha_slots_left to monitor campaign availability over time.
  • Generate a filterable Pledge Store catalog showing only purchasable ships grouped by manufacturer.
  • Visualize daily backer contribution trends using the chart data returned by get_crowdfund_stats.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Roberts Space Industries offer an official developer API?+
RSI does not publish a documented public developer API. There is no official API portal, SDK, or documented endpoint set available to third-party developers.
What does get_ship_detail return beyond what get_ships provides?+
get_ship_detail adds a manufacturer object (with name) and a paints array listing available paint options for the ship. The core fields — id, name, slug, msrp, and productionStatus — overlap with get_ships, but the detail endpoint is the only one that exposes paint variants and manufacturer identity together in a single response.
Does the API cover ship specs like cargo capacity, speed, or crew size?+
Not currently. The ship endpoints return store-facing fields: msrp, productionStatus, purchasable, manufacturer, and paints. Technical ship specifications are not included. You can fork the API on Parse and revise it to add an endpoint targeting ship specification data.
Is there pagination for the get_ships endpoint?+
The endpoint returns up to 100 ships sorted by name ascending and provides a total integer indicating the full count. If the catalog exceeds 100 ships, not all records are returned in a single call. There are no offset or page parameters currently exposed. You can fork the API on Parse and revise it to add pagination parameters.
How current is the crowdfunding data returned by get_crowdfund_stats?+
The endpoint reflects the live values shown on the RSI website at the time of the request. The 7-day chart covers daily gross contributions for the preceding week. There is no timestamp field on the response itself, so you should record your own request time if tracking data freshness matters for your use case.
Page content last updated . Spec covers 5 endpoints from robertsspaceindustries.com.
Related APIs in EntertainmentSee all →
wiki.warthunder.com API
Look up detailed specs, armaments, and economic data for any War Thunder ship or boat. Search through the complete naval vehicle database to find technical information and compare stats across the Bluewater and Coastal fleets.
indiegogo.com API
Search and retrieve detailed information about Indiegogo crowdfunding campaigns, including project details, reward tiers, updates, comments, FAQs, and creator profiles. Discover featured campaigns, browse by category, and explore all projects from specific creators to find and analyze the crowdfunding campaigns you're interested in.
shop.boeing.com API
Browse and search Boeing's online parts catalog. Retrieve product details, technical specifications, shipping attributes (hazmat, ITAR, ECCN), categories, brands, and suppliers for parts available on shop.boeing.com.
getfpv.com API
Search and browse products from GetFPV's catalog of FPV drone components and accessories. Retrieve listings by keyword or category, view detailed product specifications, pricing, and stock status, and explore new arrivals and current sales.
humblebundle.com API
Browse and search Humble Bundle's store products, view active bundles with detailed information, and check the latest Humble Choice monthly games and free offerings. Get instant access to current pricing, bundle contents, and game availability to find the best deals.
cults3d.com API
Search and discover 3D printable models across Cults3D's marketplace, filtering by categories and sorting by popularity metrics like downloads, views, and likes. Access detailed information about specific creations, designer profiles, and engagement data to find the perfect models for your printing projects.
wiki.rustclash.com API
Access Rust game items, skins, blueprints, and crafting data from the RustClash Wiki. Browse and search items by category, explore skin listings with market prices, and retrieve detailed stats including crafting recipes, repair costs, loot locations, and workbench blueprint tiers.
payloadspace.com API
Search and retrieve space industry news articles, company information, funding rounds, contract awards, and events from Payload Space's comprehensive database. Stay updated on latest developments across commercial space, military space, European space news, and industry events like webinars and podcasts.