Get network limits
GEThttps://api.n00.testnet.vega.rocks/api/v2/network/limits
Get the network limits relating to asset and market creation
Request
Responses
- 200
- 500
- default
A successful response.
- application/json
- Schema
- Example (from schema)
Schema
limits object
{
"limits": {
"canProposeAsset": true,
"canProposeMarket": true,
"canProposePerpetualMarket": true,
"canProposeSpotMarket": true,
"genesisLoaded": true,
"proposeAssetEnabled": true,
"proposeAssetEnabledFrom": "string",
"proposeMarketEnabled": true,
"proposeMarketEnabledFrom": "string"
}
}
An internal server error
- application/json
- Schema
- Example (from schema)
Schema
code int32
details object[]
message string
{
"code": 0,
"details": [
{
"@type": "string"
}
],
"message": "string"
}
An unexpected error response.
- application/json
- Schema
- Example (from schema)
Schema
code int32
details object[]
message string
{
"code": 0,
"details": [
{
"@type": "string"
}
],
"message": "string"
}
- curl
- python
- go
- nodejs
- CURL
curl -L -X GET 'https://api.n00.testnet.vega.rocks/api/v2/network/limits' \
-H 'Accept: application/json'
ResponseClear