Skip to main content
GET
/
v1
/
files
Get Files
curl --request GET \
  --url https://api.spitch.app/v1/files \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "file_id": "<string>",
      "original_name": "<string>",
      "size_bytes": 123,
      "created_at": "2023-11-07T05:31:56Z",
      "uploaded_by": "<string>"
    }
  ],
  "next_cursor": "<string>"
}

Authorizations

Authorization
string
header
required

Authenticate with Authorization: Bearer <token>. The service accepts JWTs, API keys, and guest tokens through this bearer token header.

Query Parameters

limit
integer
default:50
Required range: 1 <= x <= 100
cursor
string | null

Response

Successful Response

items
FileMetaResponse · object[]
required
next_cursor
string | null