Amazon Kinesis Data Firehose Delivery Streams API

Firehose delivery stream management

Operations 7

POST /delivery-streams Amazon Kinesis Data Firehose Create Delivery Stream #
GET /delivery-streams Amazon Kinesis Data Firehose List Delivery Streams #
GET /delivery-streams/{DeliveryStreamName} Amazon Kinesis Data Firehose Describe Delivery Stream #
DELETE /delivery-streams/{DeliveryStreamName} Amazon Kinesis Data Firehose Delete Delivery Stream #
PUT /delivery-streams/{DeliveryStreamName}/destination Amazon Kinesis Data Firehose Update Destination #
POST /delivery-streams/{DeliveryStreamName}/records Amazon Kinesis Data Firehose Put Record #
POST /delivery-streams/{DeliveryStreamName}/records/batch Amazon Kinesis Data Firehose Put Record Batch #

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-kinesis-firehose-delivery-streams-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-kinesis-firehose-delivery-streams-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Amazon Kinesis Data Firehose Delivery Streams API
  description: The Amazon Kinesis Data Firehose API provides programmatic access to manage Kinesis Data Firehose resources.
  version: '2024-01-01'
  contact:
    name: AWS Support
    url: https://aws.amazon.com/premiumsupport/
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0.html
  x-logo:
    url: https://a0.awsstatic.com/libra-css/images/logos/aws_logo_smile_1200x630.png
servers:
- url: https://firehose.us-east-1.amazonaws.com
  description: Amazon Kinesis Data Firehose endpoint
security:
- sigv4: []
tags:
- name: Delivery Streams
  description: Firehose delivery stream management
paths:
  /delivery-streams:
    post:
      operationId: CreateDeliveryStream
      summary: Amazon Kinesis Data Firehose Create Delivery Stream
      description: Creates a Kinesis Data Firehose delivery stream.
      tags:
      - Delivery Streams
      responses:
        '200':
          description: Success
        '400':
          description: Bad request
        '403':
          description: Access denied
        '500':
          description: Internal server error
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    get:
      operationId: ListDeliveryStreams
      summary: Amazon Kinesis Data Firehose List Delivery Streams
      description: Lists your delivery streams in alphabetical order of their names.
      tags:
      - Delivery Streams
      responses:
        '200':
          description: Success
        '400':
          description: Bad request
        '403':
          description: Access denied
        '500':
          description: Internal server error
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /delivery-streams/{DeliveryStreamName}:
    get:
      operationId: DescribeDeliveryStream
      summary: Amazon Kinesis Data Firehose Describe Delivery Stream
      description: Describes the specified delivery stream.
      tags:
      - Delivery Streams
      parameters:
      - name: DeliveryStreamName
        in: path
        required: true
        schema:
          type: string
        description: The name of the delivery stream.
      responses:
        '200':
          description: Success
        '400':
          description: Bad request
        '403':
          description: Access denied
        '500':
          description: Internal server error
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    delete:
      operationId: DeleteDeliveryStream
      summary: Amazon Kinesis Data Firehose Delete Delivery Stream
      description: Deletes a delivery stream and its data.
      tags:
      - Delivery Streams
      parameters:
      - name: DeliveryStreamName
        in: path
        required: true
        schema:
          type: string
        description: The name of the delivery stream.
      responses:
        '200':
          description: Success
        '400':
          description: Bad request
        '403':
          description: Access denied
        '500':
          description: Internal server error
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /delivery-streams/{DeliveryStreamName}/destination:
    put:
      operationId: UpdateDestination
      summary: Amazon Kinesis Data Firehose Update Destination
      description: Updates the specified destination of the specified delivery stream.
      tags:
      - Delivery Streams
      parameters:
      - name: DeliveryStreamName
        in: path
        required: true
        schema:
          type: string
        description: The name of the delivery stream.
      responses:
        '200':
          description: Success
        '400':
          description: Bad request
        '403':
          description: Access denied
        '500':
          description: Internal server error
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /delivery-streams/{DeliveryStreamName}/records:
    post:
      operationId: PutRecord
      summary: Amazon Kinesis Data Firehose Put Record
      description: Writes a single data record into an Amazon Kinesis Data Firehose delivery stream.
      tags:
      - Delivery Streams
      parameters:
      - name: DeliveryStreamName
        in: path
        required: true
        schema:
          type: string
        description: The name of the delivery stream.
      responses:
        '200':
          description: Success
        '400':
          description: Bad request
        '403':
          description: Access denied
        '500':
          description: Internal server error
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /delivery-streams/{DeliveryStreamName}/records/batch:
    post:
      operationId: PutRecordBatch
      summary: Amazon Kinesis Data Firehose Put Record Batch
      description: Writes multiple data records into a delivery stream in a single call.
      tags:
      - Delivery Streams
      parameters:
      - name: DeliveryStreamName
        in: path
        required: true
        schema:
          type: string
        description: The name of the delivery stream.
      responses:
        '200':
          description: Success
        '400':
          description: Bad request
        '403':
          description: Access denied
        '500':
          description: Internal server error
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  securitySchemes:
    sigv4:
      type: apiKey
      name: Authorization
      in: header
      description: AWS Signature Version 4 authentication