Base URL https://api.beemo.space
Star Citizen
GET /api/ship-matrix All ships from the RSI ship matrix
Description
Returns the full Star Citizen ship matrix — every flyable and concept ship with stats, manufacturer, role, size, and more. Data is proxied from the RSI API and cached server-side.

Star Citizen
Parameters
None — returns all ships.
Response
[ { "id": 42, "name": "Avenger Titan", "manufacturer": { "name": "Aegis Dynamics", "code": "AEGS" }, "focus": "Bounty Hunting", "type": "multi", "size": "small", "fly_able": true, "media": [{ "images": { "store_hub_large": "..." } }], "msrp": 55, "crew": { "min": 1, "max": 1 }, "cargo_capacity": 8 }, ... ]
Used By
fleet.beemo.space — ship search when adding ships to your fleet
Example
curl https://api.beemo.space/api/ship-matrix
GET /api/ship-prices Ship pledge prices (current & original)
Description
Returns a map of ship name → pledge price data. Each entry includes the current pledge store price, optional warbond price, and original (at-concept) prices where known. Maintained manually and served as a static file.

Star Citizen
Parameters
None — returns all ships.
Response
{ "Avenger Titan": { "orig_pledge": 50, "pledge": 60 }, "Carrack": { "orig_pledge": 350, "orig_warbond": 500, "pledge": 600, "warbond": 500 }, ... }
Used By
fleet.beemo.space — MSRP reset & savings indicator
saracatlee.dev — fleet manager page
Example
curl https://api.beemo.space/api/ship-prices