View Research Reports
Retrieve and download research report files and documents.
GET/3.0/research/reports/file
Description
This endpoint allows retrieval and download of research report files in their original format (typically PDF). Files are retrieved using the research report ID or direct file path.
Request
Authentication
- Type: Bearer Token
- Required: Yes
Parameters
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
id | string | Optional* | Research report ID | 64ad34123c85e1d1d902c9b8 |
path | string | Optional* | Direct file path for retrieval | /109/64ad34123c85e1d1d902c9b8.pdf |
*Either id or path is required
Response
Success Response (200)
Returns the file content with appropriate content-type headers:
- Content-Type: application/pdf (or appropriate MIME type)
- Content-Disposition: attachment; filename="research_report.pdf"
Response Example
[Binary PDF file content]
Error Responses
For detailed Common Error responses, see the Error Handling.
Examples
Download Report by ID
curl -X GET "https://csapis.com/3.0/research/reports/file?id=64ad34123c85e1d1d902c9b8" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-o "research_report.pdf"
Use Cases
- Report Access: Download research reports for offline reading
- Report Distribution: Share research reports with stakeholders
- Document Management: Retrieve and archive research documents
- Report Analysis: Access full reports for detailed analysis