Get quota and availability
client.Speed.Availabilities.List(ctx, query) (*Availability, error)
GET/zones/{zone_id}/speed_api/availabilities
Retrieves quota for all plans, as well as the current zone quota.
Security
API Token
The preferred authorization scheme for interacting with the Cloudflare API. Create a token.
Example:
API Email + API Key
The previous authorization scheme for interacting with the Cloudflare API, used in conjunction with a Global API key.
Example:
The previous authorization scheme for interacting with the Cloudflare API. When possible, use API tokens instead of Global API keys.
Example:
Accepted Permissions (at least one required)
Get quota and availability
package main
import (
"context"
"fmt"
"github.com/cloudflare/cloudflare-go"
"github.com/cloudflare/cloudflare-go/option"
"github.com/cloudflare/cloudflare-go/speed"
)
func main() {
client := cloudflare.NewClient(
option.WithAPIToken("Sn3lZJTBX6kkg7OdcBUAxOO963GEIyGQqnFTOFYY"),
)
availability, err := client.Speed.Availabilities.List(context.TODO(), speed.AvailabilityListParams{
ZoneID: cloudflare.F("023e105f4ecef8ad9ca31a8372d0c353"),
})
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", availability.Quota)
}
{
"errors": [
{
"code": 1000,
"message": "message",
"documentation_url": "documentation_url",
"source": {
"pointer": "pointer"
}
}
],
"messages": [
{
"code": 1000,
"message": "message",
"documentation_url": "documentation_url",
"source": {
"pointer": "pointer"
}
}
],
"success": true,
"result": {
"quota": {
"plan": "free",
"quotasPerPlan": {
"value": {
"business": 1,
"enterprise": 1,
"free": 1,
"pro": 1
}
},
"remainingSchedules": 1,
"remainingTests": 30,
"scheduleQuotasPerPlan": {
"value": {
"business": 1,
"enterprise": 1,
"free": 1,
"pro": 1
}
}
},
"regions": [
{
"label": "Iowa, USA",
"value": "us-central1"
}
],
"regionsPerPlan": {
"business": [
{
"label": "Iowa, USA",
"value": "us-central1"
}
],
"enterprise": [
{
"label": "Iowa, USA",
"value": "us-central1"
}
],
"free": [
{
"label": "Iowa, USA",
"value": "us-central1"
}
],
"pro": [
{
"label": "Iowa, USA",
"value": "us-central1"
}
]
}
}
}Returns Examples
{
"errors": [
{
"code": 1000,
"message": "message",
"documentation_url": "documentation_url",
"source": {
"pointer": "pointer"
}
}
],
"messages": [
{
"code": 1000,
"message": "message",
"documentation_url": "documentation_url",
"source": {
"pointer": "pointer"
}
}
],
"success": true,
"result": {
"quota": {
"plan": "free",
"quotasPerPlan": {
"value": {
"business": 1,
"enterprise": 1,
"free": 1,
"pro": 1
}
},
"remainingSchedules": 1,
"remainingTests": 30,
"scheduleQuotasPerPlan": {
"value": {
"business": 1,
"enterprise": 1,
"free": 1,
"pro": 1
}
}
},
"regions": [
{
"label": "Iowa, USA",
"value": "us-central1"
}
],
"regionsPerPlan": {
"business": [
{
"label": "Iowa, USA",
"value": "us-central1"
}
],
"enterprise": [
{
"label": "Iowa, USA",
"value": "us-central1"
}
],
"free": [
{
"label": "Iowa, USA",
"value": "us-central1"
}
],
"pro": [
{
"label": "Iowa, USA",
"value": "us-central1"
}
]
}
}
}