SENTRY API Documentation

Version 1.0 | Authentication-Free Access to Star Citizen Data

Overview

The SENTRY API provides programmatic access to a continuously updated database of Star Citizen citizen and organization data, sourced from Roberts Space Industries. This API is hosted at https://sentry.wildknightsquadron.com/api/v1 and requires no authentication.

Base URL: https://sentry.wildknightsquadron.com/api/v1

Behind the Scenes

SENTRY crawls the Star Citizen playerbase 24/7 and updates the database. It discovers new citizens through organization member lists and organizations through citizen profile pages. We self-throttle this process so we aren't putting any load on the RobertsSpaceIndustries.com servers that could even come close to being considered problematic. Check out our Statistics Page to see some of our metrics.

When a citizen or organization that is not in our database is requested via the API our crawler immediately attempts to crawl that page and returns the profile if it exists and adds it to our database.

When a citizen or oganization that is in our database but is not a complete profile (we call this a stub) we immediately crawl that page and provide the full profile.

Newly discovered organizations are crawled immediately (via a priority queue) so we are primarily focused on expanding our database of citizens.

Citizens Endpoint

Endpoint: /api/v1/citizens

GET /api/v1/citizens/{handle}

Retrieve full citizen data.

curl https://sentry.wildknightsquadron.com/api/v1/citizens/Yuka

Example Response

{
    "profile": {
        "handle": "yuka",
        "display_name": "Yuka",
        "bio": "Testing Short Bio",
        "avatar_url": "/media/5lpzy4cu6dbi8r/heap_infobox/Yuka_new.png",
        "citizen_record": "#295799",
        "title": "Lt. Colonel",
        "enlisted": "Nov 10, 2013",
        "fluency": "English",
        "location": "United States , Texas",
        "website": "https://ExperienceStarCitizen.com",
        "probation": false,
        "probation_end": null,
        "last_fetched": "2025-02-22 18:58:42.522556",
        "is_stub": false
    },
    "memberships": [
        {"organization_sid": "WILDKNIGHT", "member_rank": "Commander", "is_main": true, "rank_number": 5}
    ],
    "changes": [
        {"field_name": "website", "old_value": "https://WildKnightSquadron.com", "new_value": "https://ExperienceStarCitizen.com", "timestamp": "2025-02-22 18:58:42.524289"}
    ],
    "metadata": {
        "last_fetched": "2025-02-22 18:58:42.522556",
        "is_stub": false
    }
}
            

Sub-Resources

/api/v1/citizens/{handle}/{subResource} (e.g., memberships)

/api/v1/citizens/{handle}/{subResource}/{field} (e.g., profile/website)

Organizations Endpoint

Endpoint: /api/v1/orgs

GET /api/v1/orgs/{sid}

Retrieve full organization data.

curl https://sentry.wildknightsquadron.com/api/v1/orgs/WILDKNIGHT

Example Response

{
    "profile": {
        "sid": "WILDKNIGHT",
        "name": "Wild Knight Squadron",
        "description": null,
        "member_count": 15,
        "last_fetched": "2025-02-22 16:00:37.688924",
        "is_stub": false
    },
    "memberships": [
        {"citizen_handle": "yuka", "member_rank": "Commander", "is_main": true}
    ],
    "changes": [
        {"field_name": "member_count", "old_value": "None", "new_value": "15", "timestamp": "2025-02-22 08:14:46.496846"}
    ],
    "metadata": {
        "last_fetched": "2025-02-22 16:00:37.688924",
        "is_stub": false
    }
}
            

Sub-Resources

/api/v1/orgs/{sid}/{subResource} (e.g., memberships)

/api/v1/orgs/{sid}/{subResource}/{field} (e.g., profile/member_count)