Brault Developers

List shared links

Regionalus.api.brault.appfollows the region selector in the top bar
GET
/v1/shared-links

The brandspace’s links, newest first. File-scoped links are not included — the internal listing excludes them.

AuthorizationBearer <token>

API key from Settings → Developers

In: header

Query Parameters

limit?number
Range1 <= value <= 100
Default50
cursor?string

Opaque cursor from a previous response.

Response Body

application/json

application/json

curl -X GET "https://example.com/v1/shared-links"
{  "object": "list",  "has_more": true,  "next_cursor": "string",  "data": [    {      "object": "shared_link",      "id": "string",      "url": "string",      "target": {        "type": "file",        "id": "string"      },      "access": "view",      "password_protected": true,      "expires_at": "2019-08-24T14:15:22Z",      "expired": true,      "anonymous_comments": true,      "show_versions": true,      "show_properties": true,      "display_mode": "grid",      "board_views": {        "default": "gallery",        "allowed": [          "gallery"        ]      },      "view_count": 0,      "created_at": "2019-08-24T14:15:22Z",      "updated_at": "2019-08-24T14:15:22Z",      "created_by_id": "string"    }  ]}