Skip to main content

Get File

GET /api/files/{fileId}

Retrieve a specific file by its ID.

Code Examples

curl --request GET \
--url 'https://tess.pareto.io/api/files/{fileId}' \
--header 'Authorization: Bearer YOUR_API_KEY'

Path Parameters

ParameterTypeRequiredDescription
fileIdstringYesThe ID of the file to retrieve

Response

{
"id": 73325,
"object": "file",
"created_at": "2025-01-05T22:26:27+00:00",
"bytes": 35504128,
"filename": "endpoints.pdf",
"credits": 20.10060847168,
"status": "completed"
}

Try it out!

Authentication

This endpoint requires Bearer token authentication.

Test Endpoint