Skip to main content
GET
/
api
/
v1
/
files
/
list
List files
curl --request GET \
  --url https://aigmented.io/api/v1/files/list \
  --header 'Authorization: Bearer <token>'
{
  "message": "List of files",
  "data": [
    {
      "id": 123,
      "name": "<string>",
      "sourceName": "<string>",
      "type": "<string>",
      "uploaded_at": "2023-11-07T05:31:56Z",
      "user": {
        "id": "<string>",
        "email": "<string>",
        "name": "<string>"
      }
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.aigmented.io/llms.txt

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

Authorizations

Authorization
string
header
required

Pass your API key as a Bearer token. Example: Authorization: Bearer sk-xxxxxxxxxxxx

Response

List of files

message
string
Example:

"List of files"

data
object[]