Skip to main content
GET
/
environments
List environments
curl --request GET \
  --url https://api.verial.ai/environments \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "2023-11-07T05:31:56Z",
      "name": "<string>",
      "description": "<string>",
      "created_at": "2023-11-07T05:31:56Z"
    }
  ],
  "_meta": {
    "next": "<string>",
    "prev": "<string>",
    "limit": 123
  }
}
Returns a list of environments in your organization, including their simulator configurations.

Authorizations

Authorization
string
header
required

API key passed as a Bearer token.

Query Parameters

cursor
string

Pagination cursor for the next page of results.

limit
integer
default:20

Number of items per page (1-100, default 20).

Required range: 1 <= x <= 100

Response

Successful response

data
object[]
_meta
object