curl --request GET \
--url https://api.anchorbrowser.io/v1/sessions/{sessionId}/agent/files \
--header 'anchor-api-key: <api-key>'{
"data": {
"files": [
{
"name": "<string>",
"size": 123,
"type": "<string>",
"lastModified": "2023-11-07T05:31:56Z"
}
]
}
}List all resources that have been uploaded to the browser session for agent use. Returns resource metadata including name, size, type, and last modified timestamp.
curl --request GET \
--url https://api.anchorbrowser.io/v1/sessions/{sessionId}/agent/files \
--header 'anchor-api-key: <api-key>'{
"data": {
"files": [
{
"name": "<string>",
"size": 123,
"type": "<string>",
"lastModified": "2023-11-07T05:31:56Z"
}
]
}
}Was this page helpful?