GET
/
fastedge
/
v1
/
binaries
Python
from gcore import Gcore

client = Gcore(
    api_key="My API Key",
)
binaries = client.fastedge.binaries.list()
print(binaries.binaries)
{
  "binaries": [
    {
      "id": 123,
      "status": 123,
      "unref_since": "<string>",
      "api_type": "<string>",
      "checksum": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

API key for authentication. Make sure to include the word apikey, followed by a single space and then your token. Example: apikey 1234$abcdef

Response

200 - application/json

Ok

The response is of type object.