> ## Documentation Index
> Fetch the complete documentation index at: https://docs.data-hub.verolabs.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Get research report

> GET /v1/fa/reports/{id} — get one research report

Fetch one research report by ID.

<CardGroup cols={2}>
  <Card title="Report detail" icon="circle-check">
    Returns report metadata and URL when available.
  </Card>

  <Card title="Direct lookup" icon="circle-check">
    Use after selecting a report from the list endpoint.
  </Card>
</CardGroup>

## Common use cases

* Open a report detail page.
* Retrieve the source URL for a report.
* Map report metadata into a UI.

## Key parameter

* `id`: report ID returned by the list endpoint.


## OpenAPI

````yaml GET /v1/fa/reports/{id}
openapi: 3.0.3
info:
  title: Vero Data Hub API
  version: 1.0.0
  description: >-
    REST API cho dữ liệu thị trường, dữ liệu tham chiếu, dữ liệu cơ bản, quỹ, dữ
    liệu vĩ mô, tin tức và độ mới dữ liệu.
servers:
  - url: https://api-gw.verolabs.co
    description: Base URL của API
security:
  - ApiKeyAuth: []
tags:
  - name: reference
  - name: tick
  - name: candles
  - name: fx
  - name: bonds
  - name: macro
  - name: sentiment
  - name: calendar
  - name: funds
  - name: fa
  - name: news
  - name: ops
paths:
  /v1/fa/reports/{id}:
    get:
      tags:
        - fa
      summary: Chi tiết báo cáo phân tích
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            example: report-id
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Report'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
        '503':
          $ref: '#/components/responses/Unavailable'
components:
  schemas:
    Report:
      type: object
      properties:
        id:
          type: string
        source:
          type: string
        ticker:
          type: string
          nullable: true
        report_date:
          type: string
          format: date-time
          nullable: true
        category:
          type: string
          nullable: true
        title:
          type: string
          nullable: true
        url:
          type: string
          nullable: true
    Problem:
      type: object
      required:
        - type
        - title
        - status
      properties:
        type:
          type: string
          format: uri
          example: invalid-param
        title:
          type: string
          example: Tham số truy vấn không hợp lệ
        status:
          type: integer
          example: 400
        detail:
          type: string
          example: cần có tham số "from"
        instance:
          type: string
        request_id:
          type: string
  responses:
    Unauthorized:
      description: Thiếu hoặc sai API key.
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/Problem'
    NotFound:
      description: Không tìm thấy tài nguyên
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/Problem'
    Unavailable:
      description: API tạm thời không sẵn sàng.
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/Problem'
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY
      description: API key được cấp cho tài khoản của bạn.

````