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

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[]