curl --request GET \
--url https://api.pocketenv.io/xrpc/io.pocketenv.sandbox.getSandboxes \
--header 'Authorization: Bearer <token>'{
"sandboxes": [
{
"name": "<string>",
"provider": "<string>",
"description": "<string>",
"website": "<string>",
"logo": "<string>",
"topics": [
"<string>"
],
"repo": "<string>",
"readme": "<string>",
"vcpus": 123,
"memory": 123,
"disk": 123,
"ports": [
33280
],
"installs": 123,
"createdAt": "2023-11-07T05:31:56Z"
}
],
"total": 1
}curl --request GET \
--url https://api.pocketenv.io/xrpc/io.pocketenv.sandbox.getSandboxes \
--header 'Authorization: Bearer <token>'{
"sandboxes": [
{
"name": "<string>",
"provider": "<string>",
"description": "<string>",
"website": "<string>",
"logo": "<string>",
"topics": [
"<string>"
],
"repo": "<string>",
"readme": "<string>",
"vcpus": 123,
"memory": 123,
"disk": 123,
"ports": [
33280
],
"installs": 123,
"createdAt": "2023-11-07T05:31:56Z"
}
],
"total": 1
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The maximum number of sandboxes to return.
x >= 1The number of sandboxes to skip before starting to collect the result set.
x >= 0Was this page helpful?