Skip to main content
GET
/
files
List files
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.phaseo.app/v1/files', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "object": "<string>",
  "data": [
    {
      "id": "<string>",
      "object": "<string>",
      "bytes": 123,
      "created_at": 123,
      "filename": "<string>",
      "purpose": "<string>",
      "status": "<string>",
      "status_details": {}
    }
  ]
}
Returns file metadata for uploads that can be used in downstream workflows such as batches.

Authorizations

Authorization
string
header
required

Bearer token authentication

Response

200 - application/json

List of files

object
string
data
object[]
Last modified on February 17, 2026