curl --request GET \
--url https://api.gcore.com/cdn/clients/me/features \
--header 'Authorization: <api-key>'
{
"id": 100,
"paid_features": [
{
"feature_id": 2,
"name": "Origin shield",
"paid_feature_id": 100,
"create_date": "2021-01-29 15:21:05.165473+00:00"
}
],
"free_features": [
{
"feature_id": 22,
"name": "Additional stats",
"free_feature_id": 127,
"create_date": "2021-01-09 08:22:13.143273+00:00"
}
]
}
Get information about available CDN features.
curl --request GET \
--url https://api.gcore.com/cdn/clients/me/features \
--header 'Authorization: <api-key>'
{
"id": 100,
"paid_features": [
{
"feature_id": 2,
"name": "Origin shield",
"paid_feature_id": 100,
"create_date": "2021-01-29 15:21:05.165473+00:00"
}
],
"free_features": [
{
"feature_id": 22,
"name": "Additional stats",
"free_feature_id": 127,
"create_date": "2021-01-09 08:22:13.143273+00:00"
}
]
}
API key for authentication. Make sure to include the word apikey
, followed by a single space and then your token.
Example: apikey 1234$abcdef
Successful.
The response is of type object
.
Was this page helpful?