Skip to main content
GET
/
files
cURL
curl --request GET \
  --url https://app.loadforge.com/api/v2/files \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 123,
    "team_id": 123,
    "name": "<string>",
    "filename": "<string>",
    "path": "<string>",
    "size": 123,
    "mime_type": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.loadforge.com/llms.txt

Use this file to discover all available pages before exploring further.

Retrieve all team files (CSV, JSON, TXT), ordered by name.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

OK

id
integer
team_id
integer
name
string

Must end with .csv, .json, or .txt

filename
string

Internal stored filename

path
string

S3 key

size
integer

Size in bytes

mime_type
string
created_at
string<date-time>
updated_at
string<date-time>