Skip to main content
GET
/
uploads
List Uploads
curl --request GET \
  --url https://api.veryfront.com/uploads \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "path": "<string>",
      "file_name": "<string>",
      "content_type": "<string>",
      "size": 123,
      "url": "<string>",
      "status": "pending",
      "visibility": "project",
      "created_at": "<string>",
      "updated_at": "<string>",
      "deleted_at": "<string>"
    }
  ],
  "page_info": {
    "self": "<string>",
    "first": null,
    "next": "<string>",
    "prev": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Authentication via JWT token or API key. JWT: Get from Veryfront dashboard. API Key: Format "vf__" - create via /api-keys endpoint.

Query Parameters

project_id
string<uuid>

Filter by project ID

path
string

Filter by path prefix (directory)

cursor
string

Cursor for pagination (ISO timestamp)

limit
number
default:20

Number of items per page (default: 20, max: 100)

Required range: 1 <= x <= 100

Response

Paginated list of uploads

data
object[]
required
page_info
object
required