Scaleway · Example Payload

Scaleway Instance List Servers Example

AICloud ComputingContainersDatabaseEuropean CloudInfrastructureKubernetesServerlessStorage

Scaleway Instance List Servers Example is an example object payload from Scaleway, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "GET",
    "url": "https://api.scaleway.com/instance/v1/zones/fr-par-1/servers",
    "headers": {
      "X-Auth-Token": "{{SCALEWAY_API_KEY}}",
      "Content-Type": "application/json"
    },
    "parameters": {
      "per_page": 50,
      "page": 1,
      "state": "running"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "servers": [
        {
          "id": "3cb18e2d-f4f7-48f7-b452-59b88ae8fc8c",
          "name": "my-web-server",
          "state": "running",
          "image": {
            "id": "f974feac-abae-4365-b988-8ec7d1cec10d",
            "name": "Ubuntu 22.04 Jammy Jellyfish",
            "arch": "x86_64"
          },
          "volumes": {
            "0": {
              "id": "d9257116-6919-49b4-a420-dcfdff51fcb1",
              "name": "my-web-server-vol-0",
              "size": 20000000000,
              "volume_type": "l_ssd"
            }
          },
          "public_ip": {
            "address": "51.158.10.100",
            "dynamic": false
          },
          "private_ip": "10.8.0.5",
          "commercial_type": "GP1-S",
          "zone": "fr-par-1",
          "organization": "00000000-0000-4000-8000-000000000000",
          "project": "00000000-0000-4000-8000-000000000001",
          "tags": ["production", "web"],
          "creation_date": "2026-01-15T10:30:00.000Z",
          "modification_date": "2026-03-01T09:00:00.000Z"
        }
      ],
      "total_count": 1
    }
  }
}