List execution lanes armed on this deployment
const url = 'https://exec.predictefy.com/v1/exec/venues';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://exec.predictefy.com/v1/exec/venues \ --header 'Authorization: Bearer <token>'Requires Authorization: Bearer <api-key> with the trade scope. Returns the runtime lane registry, intersected with the shared server-execution capability registry and artifact bounds. A missing lane is not executable on this deployment.
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”Armed execution lanes and their effective capabilities.
object
object
Whether the lane supports caller-signed approved-agent authorization.
object
False means every build fails closed even though the lane is wired.
Whether a caller-facing execution geofence is active or the venue is known to reject hosted submit from the relay’s egress region.
object
Hosted execution-service lanes available for this product venue.
Why lanes is empty; null when a hosted lane exists.
object
Request/config field or caller-controlled capability needed for this venue.
Where or how the caller obtains this credential without giving Predictefy custody.
object
Public venue-eligibility summary, or null when no verified summary is encoded.
Venue-owned site where the caller starts account onboarding.
Predictefy’s venue-specific trading guide path.
Example
{ "success": true, "data": [ { "gating": { "armed": true }, "requirements": { "lanes": [ "hosted" ], "reason": "venue_api_agreement_pending", "credentials": [ { "kind": "venue_api_key" } ], "funding": { "custody": "venue" } } } ]}Missing, invalid, unknown, or revoked Predictefy API key.
object
object
Always present on errors; quote this id when reporting a failed request.
Present only when a venue error is attributed to a specific exchange.
Example
{ "success": false, "error": { "code": "VALIDATION_ERROR" }}The API key lacks the mandatory trade scope.
object
object
Always present on errors; quote this id when reporting a failed request.
Present only when a venue error is attributed to a specific exchange.
Example
{ "success": false, "error": { "code": "VALIDATION_ERROR" }}The authenticated execution token bucket is exhausted.
object
object
Always present on errors; quote this id when reporting a failed request.
Present only when a venue error is attributed to a specific exchange.
Example
{ "success": false, "error": { "code": "VALIDATION_ERROR" }}Unexpected internal execution failure.
object
object
Always present on errors; quote this id when reporting a failed request.
Present only when a venue error is attributed to a specific exchange.
Example
{ "success": false, "error": { "code": "VALIDATION_ERROR" }}Authentication, billing, or execution storage is temporarily unavailable.
object
object
Always present on errors; quote this id when reporting a failed request.
Present only when a venue error is attributed to a specific exchange.
Example
{ "success": false, "error": { "code": "VALIDATION_ERROR" }}