Vibengine
API Reference

Auth

/teams

GET
/teams
AuthorizationBearer <token>

In: header

Response Body

application/json

application/json

application/json

curl -X GET "https://api.vibengine.app/teams"
[
  null
]
{
  "code": 0,
  "message": "string"
}
{
  "code": 0,
  "message": "string"
}

/teams/{teamID}/metrics

GET
/teams/{teamID}/metrics
X-API-Key<token>

In: header

Path Parameters

teamID*string

Query Parameters

start?integer

Unix timestamp for the start of the interval, in seconds, for which the metrics

Formatint64
Range0 <= value
end?integer

Unix timestamp for the end of the interval, in seconds, for which the metrics

Formatint64
Range0 <= value

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://api.vibengine.app/teams/string/metrics"
[
  {
    "timestamp": "2019-08-24T14:15:22Z",
    "timestampUnix": 0,
    "concurrentSandboxes": 0,
    "sandboxStartRate": 0.1
  }
]
{
  "code": 0,
  "message": "string"
}
{
  "code": 0,
  "message": "string"
}
{
  "code": 0,
  "message": "string"
}
{
  "code": 0,
  "message": "string"
}

/teams/{teamID}/metrics/max

GET
/teams/{teamID}/metrics/max
X-API-Key<token>

In: header

Path Parameters

teamID*string

Query Parameters

start?integer

Unix timestamp for the start of the interval, in seconds, for which the metrics

Formatint64
Range0 <= value
end?integer

Unix timestamp for the end of the interval, in seconds, for which the metrics

Formatint64
Range0 <= value
metric*string

Metric to retrieve the maximum value for

Value in"concurrent_sandboxes" | "sandbox_start_rate"

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://api.vibengine.app/teams/string/metrics/max?metric=concurrent_sandboxes"
{
  "timestamp": "2019-08-24T14:15:22Z",
  "timestampUnix": 0,
  "value": 0
}
{
  "code": 0,
  "message": "string"
}
{
  "code": 0,
  "message": "string"
}
{
  "code": 0,
  "message": "string"
}
{
  "code": 0,
  "message": "string"
}