Skip to main content
GET
/
assets
curl -X GET 'https://app.filemonk.io/api/v1/external/assets?type=external&per_page=10' \
  -H 'X-Auth-Token: fm_api_key_your_key_here'
{
  "assets": [
    {
      "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "type": "external",
      "name": "Photoshop Brushes Pack",
      "filename": "brushes-pack-v2.zip",
      "external_url": "https://cdn.example.com/files/brushes-pack-v2.zip",
      "content_type": "application/zip",
      "byte_size": 0,
      "watermark_asset": false,
      "autogenerate_licence_key": false,
      "created_at": "2026-03-01T14:30:00Z",
      "updated_at": "2026-03-01T14:30:00Z"
    },
    {
      "id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
      "type": "licence",
      "name": "Licence Key (Autogenerated)",
      "filename": "Licence Key",
      "external_url": null,
      "content_type": "licence/key",
      "byte_size": 0,
      "watermark_asset": false,
      "autogenerate_licence_key": true,
      "created_at": "2026-03-02T09:00:00Z",
      "updated_at": "2026-03-02T09:00:00Z"
    }
  ],
  "pagination": {
    "current_page": 1,
    "per_page": 10,
    "total_count": 24,
    "total_pages": 3
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.filemonk.io/llms.txt

Use this file to discover all available pages before exploring further.

Query parameters

q
string
Search by asset name or filename. Performs a partial, case-insensitive match.
type
string
Filter by asset type. Accepts: external, licence.
page
integer
default:"1"
Page number for pagination.
per_page
integer
default:"25"
Number of assets per page. Minimum: 1, maximum: 250.

Response

assets
array
required
List of asset objects.
pagination
object
required
Pagination metadata.
curl -X GET 'https://app.filemonk.io/api/v1/external/assets?type=external&per_page=10' \
  -H 'X-Auth-Token: fm_api_key_your_key_here'
{
  "assets": [
    {
      "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "type": "external",
      "name": "Photoshop Brushes Pack",
      "filename": "brushes-pack-v2.zip",
      "external_url": "https://cdn.example.com/files/brushes-pack-v2.zip",
      "content_type": "application/zip",
      "byte_size": 0,
      "watermark_asset": false,
      "autogenerate_licence_key": false,
      "created_at": "2026-03-01T14:30:00Z",
      "updated_at": "2026-03-01T14:30:00Z"
    },
    {
      "id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
      "type": "licence",
      "name": "Licence Key (Autogenerated)",
      "filename": "Licence Key",
      "external_url": null,
      "content_type": "licence/key",
      "byte_size": 0,
      "watermark_asset": false,
      "autogenerate_licence_key": true,
      "created_at": "2026-03-02T09:00:00Z",
      "updated_at": "2026-03-02T09:00:00Z"
    }
  ],
  "pagination": {
    "current_page": 1,
    "per_page": 10,
    "total_count": 24,
    "total_pages": 3
  }
}