cURL
curl --request POST \ --url https://api.veryfront.com/projects/{project_reference}/files/batch \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "paths": [ "<string>" ] } '
{ "files": [ { "path": "<string>", "type": "<string>", "content": "<string>", "size": 123, "found": true, "error": "<string>" } ] }
Fetch multiple files in a single request
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Array of file paths to fetch
Files with content
Show child attributes