## IPFS Universal Path Gateway Content List Details **get** `/zones/{zone_id}/web3/hostnames/{identifier}/ipfs_universal_path/content_list` IPFS Universal Path Gateway Content List Details ### Path Parameters - `zone_id: string` Specify the identifier of the hostname. - `identifier: string` Specify the identifier of the hostname. ### Returns - `errors: array of ResponseInfo` - `code: number` - `message: string` - `documentation_url: optional string` - `source: optional object { pointer }` - `pointer: optional string` - `messages: array of ResponseInfo` - `code: number` - `message: string` - `documentation_url: optional string` - `source: optional object { pointer }` - `result: ContentList` - `action: optional "block"` Behavior of the content list. - `"block"` - `success: true` Specifies whether the API call was successful. - `true` - `result_info: optional unknown or string` Provides the API response. - `unknown` - `string` ### Example ```http curl https://api.cloudflare.com/client/v4/zones/$ZONE_ID/web3/hostnames/$IDENTIFIER/ipfs_universal_path/content_list \ -H "Authorization: Bearer $CLOUDFLARE_API_TOKEN" ``` #### Response ```json { "errors": [ { "code": 1000, "message": "message", "documentation_url": "documentation_url", "source": { "pointer": "pointer" } } ], "messages": [ { "code": 1000, "message": "message", "documentation_url": "documentation_url", "source": { "pointer": "pointer" } } ], "result": { "action": "block" }, "success": true, "result_info": {} } ```