Retrieve a Container Registry
- Name
get
- Type
- /v1/registry
- Description
Send a
GET
request to retrieve information about container registry.
Request
Example
curl -X GET "https://api.simplystack.com/v1/registry" \
-H "Content-Type: application/json" \
-H "Authorization: Token d359ad9cc9422b5ff07aede0cd2707da4ff82be0"
Response
Attributes
Example
json
{
"registry": {
"name": "personal-registry",
"created_at": "2023-09-26T07:24:49.760470Z",
"storage_usage": 0,
"subscription": {
"slug": "professional",
"name": "Professional",
"storage": 107374182400,
"bandwidth": 107374182400,
"available": true,
"repositories": 0,
"price_hourly": 0.028,
"price_monthly": 20.0
}
}
}