SpyBara
Go Premium

resources/containers/subresources/files/index.md 2026-07-25 05:59 UTC to 2026-07-29 15:02 UTC

124 added, 123 removed.

2026
Thu 30 22:58 Wed 29 15:02 Sat 25 05:59 Thu 23 18:00 Wed 22 20:02 Mon 20 20:00 Fri 17 17:00 Thu 16 20:57 Wed 15 02:58 Tue 14 06:58 Mon 13 15:59 Sun 12 06:58 Fri 10 23:02 Thu 9 20:58 Tue 7 08:02

Files

Create container file

post /containers/{container_id}/files

Create a Container File

You can send either a multipart/form-data request with the raw file content, or a JSON request with a file ID.

Path Parameters

  • container_id: string

Body Parameters

  • file: optional string

    The File object (not file name) to be uploaded.

  • file_id: optional string

    Name of the file to create.

Returns

  • id: string

    Unique identifier for the file.

  • bytes: number

    Size of the file in bytes.

  • container_id: string

    The container this file belongs to.

  • created_at: number

    Unix timestamp (in seconds) when the file was created.

  • object: string

    The type of this object (container.file).

  • path: string

    Path of the file in the container.

  • source: string

    Source of the file (e.g., user, assistant).

Example

curl https://api.openai.com/v1/containers/$CONTAINER_ID/files \
    -H 'Content-Type: application/json' \
    -H "Authorization: Bearer $OPENAI_API_KEY" \
    -d '{}'

Response

{
  "id": "id",
  "bytes": 0,
  "container_id": "container_id",
  "created_at": 0,
  "object": "object",
  "path": "path",
  "source": "source"
}

Example

curl https://api.openai.com/v1/containers/cntr_682e0e7318108198aa783fd921ff305e08e78805b9fdbb04/files \
  -H "Authorization: Bearer $OPENAI_API_KEY" \
  -F file="@example.txt"

Response

{
  "id": "cfile_682e0e8a43c88191a7978f477a09bdf5",
  "object": "container.file",
  "created_at": 1747848842,
  "bytes": 880,
  "container_id": "cntr_682e0e7318108198aa783fd921ff305e08e78805b9fdbb04",
  "path": "/mnt/data/88e12fa445d32636f190a0b33daed6cb-tsconfig.json",
  "source": "user"
}

Delete a container file

delete /containers/{container_id}/files/{file_id}

Delete Container File

Path Parameters

  • container_id: string

  • file_id: string

Example

curl https://api.openai.com/v1/containers/$CONTAINER_ID/files/$FILE_ID \
    -X DELETE \
    -H "Authorization: Bearer $OPENAI_API_KEY"

Example

curl -X DELETE https://api.openai.com/v1/containers/cntr_682dfebaacac8198bbfe9c2474fb6f4a085685cbe3cb5863/files/cfile_682e0e8a43c88191a7978f477a09bdf5 \
  -H "Authorization: Bearer $OPENAI_API_KEY"

Response

{
    "id": "cfile_682e0e8a43c88191a7978f477a09bdf5",
    "object": "container.file.deleted",
    "deleted": true
}

List container files

get /containers/{container_id}/files

List Container files

Path Parameters

  • container_id: string

Query Parameters

  • after: optional string

    A cursor for use in pagination. after is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with obj_foo, your subsequent call can include after=obj_foo in order to fetch the next page of the list.

  • limit: optional number

    A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 20.

  • order: optional "asc" or "desc"

    Sort order by the created_at timestamp of the objects. asc for ascending order and desc for descending order.

    • "asc"

    • "desc"

Returns

  • data: array of object { id, bytes, container_id, 4 more }

    A list of container files.

    • id: string

      Unique identifier for the file.

    • bytes: number

      Size of the file in bytes.

    • container_id: string

      The container this file belongs to.

    • created_at: number

      Unix timestamp (in seconds) when the file was created.

    • object: string

      The type of this object (container.file).

    • path: string

      Path of the file in the container.

    • source: string

      Source of the file (e.g., user, assistant).

  • first_id: string

    The ID of the first file in the list.

  • has_more: boolean

    Whether there are more files available.

  • last_id: string

    The ID of the last file in the list.

  • object: "list"

    The type of object returned, must be 'list'.

    • "list"

Example

curl https://api.openai.com/v1/containers/$CONTAINER_ID/files \
    -H "Authorization: Bearer $OPENAI_API_KEY"

Response

{
  "data": [
    {
      "id": "id",
      "bytes": 0,
      "container_id": "container_id",
      "created_at": 0,
      "object": "object",
      "path": "path",
      "source": "source"
    }
  ],
  "first_id": "first_id",
  "has_more": true,
  "last_id": "last_id",
  "object": "list"
}

Example

curl https://api.openai.com/v1/containers/cntr_682e0e7318108198aa783fd921ff305e08e78805b9fdbb04/files \
  -H "Authorization: Bearer $OPENAI_API_KEY"

Response

{
    "object": "list",
    "data": [
        {
            "id": "cfile_682e0e8a43c88191a7978f477a09bdf5",
            "object": "container.file",
            "created_at": 1747848842,
            "bytes": 880,
            "container_id": "cntr_682e0e7318108198aa783fd921ff305e08e78805b9fdbb04",
            "path": "/mnt/data/88e12fa445d32636f190a0b33daed6cb-tsconfig.json",
            "source": "user"
        }
    ],
    "first_id": "cfile_682e0e8a43c88191a7978f477a09bdf5",
    "has_more": false,
    "last_id": "cfile_682e0e8a43c88191a7978f477a09bdf5"
}

Retrieve container file

get /containers/{container_id}/files/{file_id}

Retrieve Container File

Path Parameters

  • container_id: string

  • file_id: string

Returns

  • id: string

    Unique identifier for the file.

  • bytes: number

    Size of the file in bytes.

  • container_id: string

    The container this file belongs to.

  • created_at: number

    Unix timestamp (in seconds) when the file was created.

  • object: string

    The type of this object (container.file).

  • path: string

    Path of the file in the container.

  • source: string

    Source of the file (e.g., user, assistant).

Example

curl https://api.openai.com/v1/containers/$CONTAINER_ID/files/$FILE_ID \
    -H "Authorization: Bearer $OPENAI_API_KEY"

Response

{
  "id": "id",
  "bytes": 0,
  "container_id": "container_id",
  "created_at": 0,
  "object": "object",
  "path": "path",
  "source": "source"
}

Example

curl https://api.openai.com/v1/containers/container_123/files/file_456 \
  -H "Authorization: Bearer $OPENAI_API_KEY"

Response

{
    "id": "cfile_682e0e8a43c88191a7978f477a09bdf5",
    "object": "container.file",
    "created_at": 1747848842,
    "bytes": 880,
    "container_id": "cntr_682e0e7318108198aa783fd921ff305e08e78805b9fdbb04",
    "path": "/mnt/data/88e12fa445d32636f190a0b33daed6cb-tsconfig.json",
    "source": "user"
}

Domain Types

File Create Response

  • FileCreateResponse object { id, bytes, container_id, 4 more }

    • id: string

      Unique identifier for the file.

    • bytes: number

      Size of the file in bytes.

    • container_id: string

      The container this file belongs to.

    • created_at: number

      Unix timestamp (in seconds) when the file was created.

    • object: string

      The type of this object (container.file).

    • path: string

      Path of the file in the container.

    • source: string

      Source of the file (e.g., user, assistant).

File List Response

  • FileListResponse object { id, bytes, container_id, 4 more }

    • id: string

      Unique identifier for the file.

    • bytes: number

      Size of the file in bytes.

    • container_id: string

      The container this file belongs to.

    • created_at: number

      Unix timestamp (in seconds) when the file was created.

    • object: string

      The type of this object (container.file).

    • path: string

      Path of the file in the container.

    • source: string

      Source of the file (e.g., user, assistant).

File Retrieve Response

  • FileRetrieveResponse object { id, bytes, container_id, 4 more }

    • id: string

      Unique identifier for the file.

    • bytes: number

      Size of the file in bytes.

    • container_id: string

      The container this file belongs to.

    • created_at: number

      Unix timestamp (in seconds) when the file was created.

    • object: string

      The type of this object (container.file).

    • path: string

      Path of the file in the container.

    • source: string

      Source of the file (e.g., user, assistant).

Content

Retrieve container file content

get /containers/{container_id}/files/{file_id}/content

Retrieve Container File Content

Path Parameters

  • container_id: string

  • file_id: string

Example

curl https://api.openai.com/v1/containers/$CONTAINER_ID/files/$FILE_ID/content \
    -H "Authorization: Bearer $OPENAI_API_KEY"

Example

curl https://api.openai.com/v1/containers/container_123/files/cfile_456/content \
  -H "Authorization: Bearer $OPENAI_API_KEY"

Response

<binary content of the file>