Iru

Iru Library Item Upload API

Single-operation S3 pre-signed upload contract returned by the Custom App and IPA App creation endpoints of the Iru Endpoint Management API. The upload URL is variable per request; the provider publishes it as a separate OpenAPI document.

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/iru-library-item-upload-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 email required.

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

OpenAPI Specification

kandji-upload-to-s3-openapi.json Raw ↑
{
  "openapi": "3.0.0",
  "info": {
    "title": "Upload to S3",
    "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."
    }
  ],
  "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"
          }
        }
      }
    }
  }
}