from gcore import Gcore
client = Gcore(
api_key="My API Key",
)
client = client.fastedge.get_account_overview()
print(client.plan_id)
{
"status": 123,
"hourly_limit": 123,
"hourly_consumption": 123,
"daily_limit": 123,
"daily_consumption": 123,
"app_limit": 123,
"app_count": 123,
"monthly_consumption": 123,
"networks": [
{
"name": "<string>",
"is_default": true
}
],
"plan_id": 123,
"plan": "<string>"
}
from gcore import Gcore
client = Gcore(
api_key="My API Key",
)
client = client.fastedge.get_account_overview()
print(client.plan_id)
{
"status": 123,
"hourly_limit": 123,
"hourly_consumption": 123,
"daily_limit": 123,
"daily_consumption": 123,
"app_limit": 123,
"app_count": 123,
"monthly_consumption": 123,
"networks": [
{
"name": "<string>",
"is_default": true
}
],
"plan_id": 123,
"plan": "<string>"
}
API key for authentication. Make sure to include the word apikey
, followed by a single space and then your token.
Example: apikey 1234$abcdef
Ok
The response is of type object
.
Was this page helpful?