curl --location --request POST 'https://api.lootlocker.io/server/assets/artful-alpaca/v1?per_page=10&page=1' \
--header 'x-auth-token: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "includes": {
        "storage": true,
        "files": true,
        "data_entities": true,
        "metadata": true
    },
    "excludes": {
        "authors": true
    },
    "filters": {
        "ugc_only": true,
        "asset_ids": [
            0
        ]
    }
}'{
    "assets": [
        {
            "asset_id": 0,
            "asset_uuid": "string",
            "asset_ulid": "string",
            "asset_name": "string",
            "context_id": 0,
            "context_name": "string",
            "author": {
                "player_id": 0,
                "player_ulid": "string",
                "public_uid": "string",
                "active_name": "string"
            },
            "storage": [
                {
                    "key": "string",
                    "value": "string"
                }
            ],
            "files": [
                {
                    "size": 0,
                    "name": "string",
                    "url": "string",
                    "tags": [
                        "string"
                    ]
                }
            ],
            "data_entities": [
                {
                    "name": "string",
                    "data": "string"
                }
            ]
        }
    ],
    "pagination": {
        "errors": [
            {
                "field": "string",
                "message": "string"
            }
        ],
        "per_page": 0,
        "offset": 0,
        "total": 0,
        "last_page": 0,
        "current_page": 0,
        "next_page": 0,
        "prev_page": 0
    }
}