API Overview
The Stow API allows you to programmatically manage your team's projects and registry items. All endpoints are available at the following base URL:
https://stow.build/apiAuthentication
All API requests require a team API key passed via the x-api-key header. You can find your API key in your team settings dashboard.
curl https://stow.build/api/projects \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json"If the API key is missing or invalid, the API will return an error response:
| Status | Error | Cause |
|---|---|---|
400 | API key is required. | The x-api-key header is missing or empty. |
401 | Unauthorized. | The API key is invalid. |
Request format
All request bodies must be JSON with the Content-Type: application/json header.
Error responses
When a request fails, the API returns a JSON object with an error field describing what went wrong:
{
"error": "A description of what went wrong."
}