Getting Started
The RedShip API lets you programmatically access and manage your inbox (opportunities) found on Reddit.
Authentication
All API requests require an API key passed via the Authorization header.
Header
Authorization: Bearer rsp_your_api_key_hereCreating an API Key
- Go to Settings → API tab in your dashboard
- Click Create Key and give it a name
- Copy the key — it will only be shown once
Key Format
API keys are prefixed with rsp_ for easy identification (e.g. rsp_a1b2c3d4e5f6...).
Base URL
https://redship.io/api/v1Endpoints
Response Format
All responses return JSON with a data field:
Single item
{
"data": { ... }
}List endpoints also include pagination info:
List
{
"data": [...],
"count": 42,
"limit": 50,
"offset": 0
}Error Handling
Errors return an error field with an HTTP status code:
| Status | Meaning |
|---|---|
401 | Invalid or missing API key |
404 | Item not found or not owned by you |
400 | Invalid request body or parameters |
500 | Server error |
Error response
{
"error": "Unauthorized"
}Rate Limits
Please keep requests reasonable. Excessive usage may be throttled.
Last updated on