Vega
API Reference

Errors

HTTP status codes and the error response shape.

Status codes

StatusMeaning
200Success
400Bad request (invalid parameters)
401Unauthorized (invalid or missing token)
403Forbidden (Enterprise required, or insufficient permissions)
404Not found (resource missing, or timestamp outside the available window)
422Unprocessable entity (validation error)
429Too many requests (rate limit exceeded)
500Internal server error

Response shape

{
	"error": {
		"code": "ERROR_CODE",
		"message": "Human-readable description",
		"details": {
			"valid_range": { "start": "...", "end": "..." }
		}
	},
	"meta": {
		"request_id": "...",
		"timestamp": "..."
	}
}

On this page