Amazon Timestream Write API

Operations for writing time series data.

Operations 1

POST /#WriteRecords Amazon Timestream Write Records #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/amazon-timestream-write-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

amazon-timestream-write-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Amazon Timestream Databases Write API
  description: Amazon Timestream is a fast, scalable, and serverless time series database service for IoT and operational applications, enabling storage and analysis of trillions of events per day.
  version: '2018-11-01'
  contact:
    name: Kin Lane
    email: kin@apievangelist.com
    url: https://aws.amazon.com/timestream/
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0
servers:
- url: https://ingest.timestream.amazonaws.com
  description: Amazon Timestream Write API endpoint
tags:
- name: Write
  description: Operations for writing time series data.
paths:
  /#WriteRecords:
    post:
      operationId: WriteRecords
      summary: Amazon Timestream Write Records
      description: Enables you to write your time series data into Timestream, writing records individually or in batches for optimal throughput.
      requestBody:
        required: true
        content:
          application/x-amz-json-1.0:
            schema:
              type: object
              properties:
                DatabaseName:
                  type: string
                  description: The name of the Timestream database.
                TableName:
                  type: string
                  description: The name of the Timestream table.
                CommonAttributes:
                  type: object
                  description: A record containing the common measure, dimension, and time information.
                  properties:
                    Dimensions:
                      type: array
                      items:
                        type: object
                        properties:
                          Name:
                            type: string
                          Value:
                            type: string
                          DimensionValueType:
                            type: string
                    MeasureName:
                      type: string
                    MeasureValue:
                      type: string
                    MeasureValueType:
                      type: string
                      enum:
                      - DOUBLE
                      - BIGINT
                      - VARCHAR
                      - BOOLEAN
                      - TIMESTAMP
                      - MULTI
                    Time:
                      type: string
                    TimeUnit:
                      type: string
                      enum:
                      - MILLISECONDS
                      - SECONDS
                      - MICROSECONDS
                      - NANOSECONDS
                Records:
                  type: array
                  description: An array of records containing the unique measure, dimension, time, and version attributes.
                  items:
                    type: object
                    properties:
                      Dimensions:
                        type: array
                        items:
                          type: object
                          properties:
                            Name:
                              type: string
                            Value:
                              type: string
                      MeasureName:
                        type: string
                      MeasureValue:
                        type: string
                      MeasureValueType:
                        type: string
                      MeasureValues:
                        type: array
                        items:
                          type: object
                          properties:
                            Name:
                              type: string
                            Value:
                              type: string
                            Type:
                              type: string
                      Time:
                        type: string
                      TimeUnit:
                        type: string
                      Version:
                        type: integer
              required:
              - DatabaseName
              - TableName
              - Records
      responses:
        '200':
          description: Records written successfully.
          content:
            application/json:
              schema:
                type: object
                properties:
                  RecordsIngested:
                    type: object
                    properties:
                      Total:
                        type: integer
                      MemoryStore:
                        type: integer
                      MagneticStore:
                        type: integer
      tags:
      - Write
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK