# Create a presigned storage upload

Returns one or more presigned S3 upload URLs for uploading a source file before registering it with `/v2/jobs/register`. Provide `file_size` to request a multipart upload.

URL: /reference/storage/createStorageUpload

## POST /v2/storage/uploads

```json
{
  "openapi": "3.2.0",
  "info": {
    "title": "Create a presigned storage upload",
    "description": "Lingopal v2 public API for text translation, storage uploads, registered jobs, job workflows, and job outputs.",
    "version": "v2"
  },
  "servers": [
    {
      "url": "https://vod-api.lingopal-dev.com"
    }
  ],
  "security": [
    {
      "APIKeyHeader": []
    }
  ],
  "paths": {
    "/v2/storage/uploads": {
      "post": {
        "tags": [
          "Storage"
        ],
        "summary": "Create a presigned storage upload",
        "description": "Returns one or more presigned S3 upload URLs for uploading a source file before registering it with `/v2/jobs/register`. Provide `file_size` to request a multipart upload.",
        "operationId": "createStorageUpload",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/StorageUploadRequest"
              },
              "examples": {
                "singlePartStorageUpload": {
                  "summary": "Create a single-part upload URL",
                  "description": "Request one presigned PUT URL for a client-managed source upload. Register the returned source_url later with `/v2/jobs/register`.",
                  "value": {
                    "file_ext": "mp4"
                  }
                },
                "multipartStorageUpload": {
                  "summary": "Create multipart upload URLs",
                  "description": "Request presigned part URLs for a large source upload. Complete the multipart upload with `/v2/storage/uploads/complete`, then register the returned source_url with `/v2/jobs/register`.",
                  "value": {
                    "file_ext": "mp4",
                    "file_size": 524288000
                  }
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "Presigned upload metadata and upload part URLs.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/StorageUploadResponse"
                },
                "example": {
                  "source_url": "https://cdn.example.com/presigned_upload/user_123/source.mp4",
                  "file_path": "presigned_upload/user_123/source.mp4",
                  "upload_id": "2~example-upload-id",
                  "upload_urls": [
                    {
                      "part_number": 1,
                      "upload_url": "https://example-bucket.s3.amazonaws.com/presigned_upload/user_123/source.mp4?partNumber=1&X-Amz-Signature=..."
                    }
                  ],
                  "method": "PUT",
                  "headers": {
                    "Content-Type": "video/mp4"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid authentication token."
          },
          "422": {
            "description": "Request validation error."
          }
        },
        "security": [
          {
            "APIKeyHeader": []
          }
        ]
      }
    }
  },
  "tags": [
    {
      "name": "Storage",
      "description": "Create and complete presigned storage uploads for source files."
    }
  ],
  "components": {
    "schemas": {
      "StorageUploadRequest": {
        "properties": {
          "file_ext": {
            "type": "string",
            "minLength": 1,
            "title": "File Ext",
            "description": "Source file extension, with or without a leading dot.",
            "examples": [
              "mp4",
              "wav",
              "pdf"
            ]
          },
          "file_size": {
            "anyOf": [
              {
                "type": "integer",
                "exclusiveMinimum": 0
              },
              {
                "type": "null"
              }
            ],
            "title": "File Size",
            "description": "Source file size in bytes. Provide this value to request multipart presigned upload URLs; omit it for a single PUT upload URL.",
            "examples": [
              104857600
            ]
          }
        },
        "type": "object",
        "required": [
          "file_ext"
        ],
        "title": "StorageUploadRequest"
      },
      "StorageUploadResponse": {
        "properties": {
          "source_url": {
            "type": "string",
            "title": "Source Url",
            "description": "Final URL of the uploaded file after upload completion.",
            "examples": [
              "https://example-bucket.s3.amazonaws.com/presigned_upload/user/file.mp4"
            ]
          },
          "file_path": {
            "type": "string",
            "title": "File Path",
            "description": "Storage path for the storage upload. Use this when completing multipart uploads.",
            "examples": [
              "presigned_upload/user_123/source.mp4"
            ]
          },
          "upload_id": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ],
            "title": "Upload Id",
            "description": "S3 multipart upload ID. Present only when the storage upload uses multipart upload.",
            "examples": [
              "2~example-upload-id"
            ]
          },
          "upload_urls": {
            "items": {
              "$ref": "#/components/schemas/UploadPart"
            },
            "type": "array",
            "title": "Upload Urls",
            "description": "Presigned upload URLs, one per upload part."
          },
          "method": {
            "type": "string",
            "const": "PUT",
            "title": "Method",
            "description": "HTTP method clients must use for each presigned upload URL.",
            "default": "PUT"
          },
          "headers": {
            "additionalProperties": {
              "type": "string"
            },
            "type": "object",
            "title": "Headers",
            "description": "Additional headers clients should send with the upload request.",
            "examples": [
              {}
            ]
          }
        },
        "type": "object",
        "required": [
          "source_url",
          "file_path"
        ],
        "title": "StorageUploadResponse",
        "examples": [
          {
            "file_path": "presigned_upload/user_123/source.mp4",
            "headers": {
              "Content-Type": "video/mp4"
            },
            "method": "PUT",
            "source_url": "https://cdn.example.com/presigned_upload/user_123/source.mp4",
            "upload_id": "2~example-upload-id",
            "upload_urls": [
              {
                "part_number": 1,
                "upload_url": "https://example-bucket.s3.amazonaws.com/presigned_upload/user_123/source.mp4?partNumber=1&X-Amz-Signature=..."
              }
            ]
          }
        ]
      },
      "UploadPart": {
        "properties": {
          "part_number": {
            "type": "integer",
            "title": "Part Number",
            "description": "One-based multipart upload part number.",
            "examples": [
              1
            ]
          },
          "upload_url": {
            "type": "string",
            "title": "Upload Url",
            "description": "Presigned URL used to upload this part with the documented HTTP method.",
            "examples": [
              "https://example-bucket.s3.amazonaws.com/presigned_upload/user/file.mp4?X-Amz-Signature=..."
            ]
          }
        },
        "type": "object",
        "required": [
          "part_number",
          "upload_url"
        ],
        "title": "UploadPart"
      }
    },
    "securitySchemes": {
      "APIKeyHeader": {
        "in": "header",
        "name": "X-API-Key",
        "type": "apiKey"
      }
    }
  }
}
```
