GamebeastDocs
Dashboard
Project APIEnvironments

List project environments

GET
/application/{applicationId}/environments/

List the environments available for a project, by canonical name. Use a returned name as the environment header on API and MCP calls.

Authorization

personalAccessTokenAuth
AuthorizationBearer <token>

Personal access token (prefixed gb_pat_). Acts on behalf of its owner and can never exceed the owner's own permissions. Send it as Authorization: Bearer <token>.

In: header

Path Parameters

applicationId*number

Gamebeast project ID

Response Body

application/json

curl -X GET "https://example.com/application/0/environments/"
{  "environments": [    {      "name": "string",      "label": "string",      "production": true    }  ]}