BioFlow
API Reference

List files

GET /v1/files — The workspace's uploaded files (name, MIME type, size, public path), newest first. Pass a file's public_path as file_url to Add block to wire it…

GET
/v1/files

The workspace's uploaded files (name, MIME type, size, public path), newest first. Pass a file's public_path as file_url to Add block to wire it into IMAGE/FILE/CAROUSEL/PRODUCT blocks.

Requires scope: files:read. Plan entitlement: public_api (Creator and Pro).

Authorization

AuthorizationBearer <token>

API key (bf_live_… / bf_test_…) as a Bearer token.

In: header

Query Parameters

limit?integer
Range1 <= value <= 100
Default25
after?string

Opaque cursor from a previous response

Response Body

application/json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

curl -X GET "https://example.com/v1/files"
{  "data": [    {      "id": "string",      "name": "string",      "mime_type": "string",      "public_path": "string",      "download_path": "string",      "size_bytes": 0,      "created_at": "2019-08-24T14:15:22Z"    }  ],  "has_more": true,  "next_cursor": "string"}