Iru

Iru Upload To S3 API

The Upload To S3 API from Iru — 1 operation(s) for upload to s3.

Operations 1

POST /{post_url} Upload to S3

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/kandji-upload-to-s3-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

kandji-upload-to-s3-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Upload To S3 API
  version: 1.0.0
  description: This endpoint handles the S3 upload process for custom applications using a variable URL.
servers:
- url: https://
  description: The S3 upload URL provided by the custom app creation endpoint. This is a variable URL that changes for each upload request.
tags:
- name: Upload To S3
paths:
  /{post_url}:
    post:
      summary: Upload to S3
      description: This endpoint handles the S3 upload process for custom applications using a variable URL.
      parameters:
      - name: post_url
        in: path
        required: true
        description: The S3 upload URL provided by the custom app creation endpoint. This is a variable URL that changes for each upload request.
        schema:
          type: string
        example: https://s3.amazonaws.com/bucket-name/upload-path
      requestBody:
        required: true
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                key:
                  type: string
                  description: Value provided by the custom app creation endpoint
                x-amz-algorithm:
                  type: string
                  description: AWS signature algorithm
                x-amz-credential:
                  type: string
                  description: AWS credentials
                x-amz-date:
                  type: string
                  description: AWS request date
                x-amz-security-token:
                  type: string
                  description: AWS security token
                policy:
                  type: string
                  description: AWS policy
                x-amz-signature:
                  type: string
                  description: AWS signature
                file:
                  type: string
                  format: binary
                  description: The application file to upload
              required:
              - key
              - file
      responses:
        '200':
          description: File uploaded successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  message:
                    type: string
                    example: File uploaded successfully
        '400':
          description: Bad request - invalid parameters or file
        '403':
          description: Forbidden - invalid S3 credentials or permissions
        '500':
          description: Internal server error
      tags:
      - Upload To S3