# FilesReadFileResponse


[API catalog](/reference/api/) · [Docker Sandboxes overview](/reference/api/sandboxes/latest/) · [Product manual](https://docs.docker.com/ai/sandboxes-api/) · [OpenAPI specification](/reference/api/sandboxes/api.yaml)

API version: v1


> This API is experimental. Features, interfaces,
> and behavior may change.




Schema constraints and annotations:

```json
{
  "additionalProperties": false,
  "description": "ReadFileResponse carries the whole file; HTTP selects data as its raw response body.",
  "properties": {
    "data": {
      "description": "data is the complete content; a file above the message cap is refused.",
      "format": "byte",
      "type": "string"
    },
    "info": {
      "$ref": "#/components/schemas/FileInfo",
      "description": "info remains available to the internal adapter; HTTP clients use Stat for metadata."
    }
  },
  "required": [
    "info"
  ],
  "title": "ReadFileResponse",
  "type": "object"
}
```



