# Request signed upload URL (recommended)

POST

/v1/workspaces/{workspace\_id}/files/upload-url

```bash
curl --request POST \
  --url https://api.app.layer.ai/api/v1/workspaces/:workspace_id/files/upload-url \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "content_type": "<string>",
  "file_name": "<string>",
  "file_size_bytes": 0,
  "source_type": "pose"
}'
```

```python
import requests


url = "https://api.app.layer.ai/api/v1/workspaces/:workspace_id/files/upload-url"


payload = {
    "content_type": "<string>",
    "file_name": "<string>",
    "file_size_bytes": 0,
    "source_type": "pose"
}
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}


response = requests.post(url, json=payload, headers=headers)


print(response.json())
```

```js
const url = 'https://api.app.layer.ai/api/v1/workspaces/:workspace_id/files/upload-url';
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: '{"content_type":"<string>","file_name":"<string>","file_size_bytes":0,"source_type":"pose"}'
};


try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go
package main


import (
  "fmt"
  "strings"
  "net/http"
  "io"
)


func main() {


  url := "https://api.app.layer.ai/api/v1/workspaces/:workspace_id/files/upload-url"


  payload := strings.NewReader("{\n  \"content_type\": \"<string>\",\n  \"file_name\": \"<string>\",\n  \"file_size_bytes\": 0,\n  \"source_type\": \"pose\"\n}")


  req, _ := http.NewRequest("POST", url, payload)


  req.Header.Add("Authorization", "Bearer <token>")
  req.Header.Add("Content-Type", "application/json")


  res, _ := http.DefaultClient.Do(req)


  defer res.Body.Close()
  body, _ := io.ReadAll(res.Body)


  fmt.Println(res)
  fmt.Println(string(body))


}
```

```php
<?php


$curl = curl_init();


curl_setopt_array($curl, [
  CURLOPT_URL => "https://api.app.layer.ai/api/v1/workspaces/:workspace_id/files/upload-url",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "POST",
  CURLOPT_POSTFIELDS => json_encode([
    'content_type' => '<string>',
    'file_name' => '<string>',
    'file_size_bytes' => 0,
    'source_type' => 'pose'
  ]),
  CURLOPT_HTTPHEADER => [
    "Authorization: Bearer <token>",
    "Content-Type: application/json"
  ],
]);


$response = curl_exec($curl);
$err = curl_error($curl);


curl_close($curl);


if ($err) {
  echo "cURL Error #:" . $err;
} else {
  echo $response;
}
```

```java
OkHttpClient client = new OkHttpClient();


MediaType mediaType = MediaType.parse("application/json");
RequestBody body = RequestBody.create(mediaType, "{\n  \"content_type\": \"<string>\",\n  \"file_name\": \"<string>\",\n  \"file_size_bytes\": 0,\n  \"source_type\": \"pose\"\n}");
Request request = new Request.Builder()
  .url("https://api.app.layer.ai/api/v1/workspaces/:workspace_id/files/upload-url")
  .post(body)
  .addHeader("Authorization", "Bearer <token>")
  .addHeader("Content-Type", "application/json")
  .build();


Response response = client.newCall(request).execute();
```

```ruby
require 'uri'
require 'net/http'


url = URI("https://api.app.layer.ai/api/v1/workspaces/:workspace_id/files/upload-url")


http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true


request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n  \"content_type\": \"<string>\",\n  \"file_name\": \"<string>\",\n  \"file_size_bytes\": 0,\n  \"source_type\": \"pose\"\n}"


response = http.request(request)
puts response.read_body
```

```csharp
var client = new RestClient("https://api.app.layer.ai/api/v1/workspaces/:workspace_id/files/upload-url");
var request = new RestRequest("", Method.Post);
request.AddHeader("Authorization", "Bearer <token>");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{\n  \"content_type\": \"<string>\",\n  \"file_name\": \"<string>\",\n  \"file_size_bytes\": 0,\n  \"source_type\": \"pose\"\n}", ParameterType.RequestBody);
var response = client.Execute(request);
```

* Production

Get a signed URL to upload a file directly to storage, bypassing the server. This is the recommended upload method for large files.

**Flow:**

1. Call this endpoint with content\_type and file\_size\_bytes
2. POST to the returned upload\_url with header `x-goog-resumable: start` to get a session URI
3. PUT your file content to the session URI (supports chunked/resumable uploads)
4. Use the returned file\_id as input to generation endpoints

Allowed types: application/x-zip-compressed, application/zip, audio/mpeg, audio/wav, image/jpeg, image/png, image/webp, video/mp4\. Max size: 64 MB. Upload URL expires in 15 minutes.

## Authorizations

* **[bearerAuth](/docs/rest-api#bearerauth)**

## Parameters

### Path Parameters

**workspace\_id**

required

_Workspace Id_

string format: uuid

## Request Bodyrequired

_RequestUploadUrlRequest_object

**content\_type**

required

_Content Type_

MIME type of the file to upload.

string

**file\_name**

Any of:

**string**

string

**null**

null

**file\_size\_bytes**

required

_File Size Bytes_

Expected file size in bytes. Used to enforce upload limits.

integer

\> 0

**source\_type**

Any of:

**FileSourceType**

_FileSourceType_

string

Allowed values: pose reference mask composite google\_drive transformed\_reference skill\_resource skill\_bundle

**null**

null

## Responses

### 201

Successful Response

_RequestUploadUrlResponse_object

**file\_id**

required

_File Id_

Unique identifier for the file. Use as input to generation endpoints after upload completes.

string format: uuid

**upload\_url**

required

_Upload Url_

Signed upload URL. POST to this URL to initiate a resumable upload, then PUT file chunks to the session URI returned in the Location header. Expires in 15 minutes.

string

**content\_type**

required

_Content Type_

MIME type to use when uploading.

string

**source\_type**

Any of:

**FileSourceType**

_FileSourceType_

string

Allowed values: pose reference mask composite google\_drive transformed\_reference skill\_resource skill\_bundle

**null**

null

##### Example

```json
{
  "source_type": "pose"
}
```

### 401

Unauthenticated — missing or invalid Bearer token.

object

**type**

required

string

**title**

required

string

**status**

required

integer

**detail**

required

string

##### Example

```json
{
  "type": "https://api.layer.ai/errors/ERROR_CODE",
  "title": "Error Title",
  "status": 400,
  "detail": "Human-readable description."
}
```

### 403

Forbidden — insufficient permissions.

object

**type**

required

string

**title**

required

string

**status**

required

integer

**detail**

required

string

##### Example

```json
{
  "type": "https://api.layer.ai/errors/ERROR_CODE",
  "title": "Error Title",
  "status": 400,
  "detail": "Human-readable description."
}
```

### 404

Resource not found.

object

**type**

required

string

**title**

required

string

**status**

required

integer

**detail**

required

string

##### Example

```json
{
  "type": "https://api.layer.ai/errors/ERROR_CODE",
  "title": "Error Title",
  "status": 400,
  "detail": "Human-readable description."
}
```

### 422

Invalid input parameters.

object

**type**

required

string

**title**

required

string

**status**

required

integer

**detail**

required

string

##### Example

```json
{
  "type": "https://api.layer.ai/errors/ERROR_CODE",
  "title": "Error Title",
  "status": 400,
  "detail": "Human-readable description."
}
```

### 429

Rate limited — too many concurrent requests.

object

**type**

required

string

**title**

required

string

**status**

required

integer

**detail**

required

string

##### Example

```json
{
  "type": "https://api.layer.ai/errors/ERROR_CODE",
  "title": "Error Title",
  "status": 400,
  "detail": "Human-readable description."
}
```

### 500

Internal server error.

object

**type**

required

string

**title**

required

string

**status**

required

integer

**detail**

required

string

##### Example

```json
{
  "type": "https://api.layer.ai/errors/ERROR_CODE",
  "title": "Error Title",
  "status": 400,
  "detail": "Human-readable description."
}
```
