ThingSpeak · Example Payload

Thingspeak Bulk Update Example

IoTInternet of ThingsAnalyticsTime SeriesMQTTMATLABSensorsTelemetry

Thingspeak Bulk Update Example is an example object payload from ThingSpeak, 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": "POST",
    "url": "https://api.thingspeak.com/channels/12345/bulk_update.json",
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "write_api_key": "YOUR_WRITE_API_KEY",
      "updates": [
        {
          "created_at": "2026-05-25T14:00:00Z",
          "field1": "22.1",
          "field2": "48.2"
        },
        {
          "created_at": "2026-05-25T14:01:00Z",
          "field1": "22.3",
          "field2": "48.0"
        },
        {
          "created_at": "2026-05-25T14:02:00Z",
          "field1": "22.4",
          "field2": "47.8"
        }
      ]
    }
  },
  "response": {
    "status": 202,
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "success": true
    }
  }
}