1. Files
Pibox public API
0.6.3
  • 0.6.2
  • 0.6.3
  • v1
    • Teams
      • Get Teams
    • Groups
      • Get Groups
      • Get Group Info
    • Projects
      • Get Project Info
      • Create Project
      • Get Projects by Group
      • Get Non Group Projects
      • Get Chat History
      • Chat Message
    • Account
      • Get Account Info
    • Files
      • Find Files
        POST
      • Get File Info
        POST
      • Create Folder
        POST
      • Get Files by Folder
        POST
      • Get Folder URL
        POST
      • Update Folder Properties
        POST
      • Delete File
        POST
      • Upload from External Source
        POST
      • Generate Track Tags
        POST
      • File Upload
        PUT
    • Tasks
      • Get Task Template
      • Load Tasks from Template
      • Get Tasks by Folder
    • Webhooks
      • Create Webhook Endpoint
      • Get Webhook Endpoints
      • Delete Webhook Endpoint
  • Schemas
    • v1
      • Team
      • Track Info
      • Video Info
      • Image Info
      • AI Tags
      • Empty Schema
  1. Files

Find Files

POST
/v1/files/find
Returns a list of files based on the specified filters. Returns only files, not folders

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/jsonRequired

Examples

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/v1/files/find' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "team_id": 737,
    "group_id": 1797,
    "start_date": "2025-09-10",
    "end_date": "2027-03-05",
    "limit": 3,
    "offset": 4
}'
Response Response Example
{
    "data": [
        {
            "project_id": 158402,
            "group_id": 1797,
            "id": 655611,
            "name": "favicon.ico",
            "object": "file",
            "parent_id": 653208,
            "removal_protection": false,
            "size": 15406,
            "task_load_protection": false,
            "upload_date": "2026-02-11T13:26:56Z",
            "url": "https://stage-pibox-avatar.s3.eu-west-1.amazonaws.com/..."
        },
        {
            "project_id": 158402,
            "group_id": 1797,
            "id": 655612,
            "name": "favicon (1).ico",
            "object": "file",
            "parent_id": 653208,
            "removal_protection": false,
            "size": 13028,
            "task_load_protection": false,
            "upload_date": "2026-02-11T13:28:01Z",
            "url": "https://stage-pibox-avatar.s3.eu-west-1.amazonaws.com/..."
        },
        {
            "project_id": 158402,
            "group_id": 1797,
            "id": 657966,
            "name": "track.wav",
            "object": "file",
            "parent_id": 620907,
            "removal_protection": false,
            "size": 52731058,
            "task_load_protection": false,
            "upload_date": "2026-03-11T13:45:30Z",
            "url": "https://stage-pibox-avatar.s3.eu-west-1.amazonaws.com/..."
        }
    ],
    "object": "list"
}
Modified at 2026-03-17 15:11:42
Previous
Get Account Info
Next
Get File Info
Built with