Version Pill API
v1.0Manage your roadmap, changelog, and feature requests programmatically.
https://versionpill.com/api/v1Introduction
The Version Pill API lets you integrate your product roadmap and changelog into your workflows. Create tasks from CI/CD, publish releases automatically, or build custom integrations.
📋
Tasks
Create, update, and manage roadmap tasks
🚀
Releases
Publish changelog entries programmatically
💡
Ideas
Collect and manage feature requests
Authentication
Authenticated endpoints require a Bearer token. Get your API key from Settings.
curl https://versionpill.com/api/v1/project \
-H "Authorization: Bearer vp_your_api_key"Keep your API key secure. Never commit it to version control or expose it in client-side code.
Rate Limits
| Endpoint Type | Limit | Window |
|---|---|---|
| Authenticated | 1,000 requests | per hour |
| Public | 100 requests | per hour |
| Idea submission | 3 requests | per hour per IP |
Errors
The API returns standard HTTP status codes and JSON error responses.
| Code | Description |
|---|---|
200 | Success |
201 | Created |
400 | Bad request - check your parameters |
401 | Unauthorized - invalid or missing API key |
404 | Not found |
429 | Rate limit exceeded |
500 | Internal server error |
Error response format:
{
"error": "not_found",
"message": "Task not found"
}