---
title: "Recommendations"
method: GET
path: "/recommendations"
tags: ["analysis"]
---

# Recommendations

`GET /recommendations`

The recommendations endpoint provides a summary of analyst opinions for a specific stock, delivering an average recommendation categorized as Strong Buy, Buy, Hold, or Sell. It also includes a numerical recommendation score, offering a quick overview of market sentiment based on expert analysis.

## Query parameters

- `symbol` string
- `figi` string
- `isin` string
- `cusip` string
- `country` string
- `exchange` string
- `mic_code` string

## Response `200`

- object
  - `meta` object, required — Metadata about the symbol
    - `symbol` string, required — Symbol ticker of the instrument
    - `name` string, required — Name of the instrument
    - `currency` string, required — Currency in which the instrument is traded
    - `exchange_timezone` string, required — Timezone of the exchange
    - `exchange` string, required — Exchange where the instrument is traded
    - `mic_code` string, required — Market identifier code (MIC) under ISO 10383 standard
    - `type` string, required — Type of the instrument
  - `trends` object, required — Analyst recommendations trends
    - `current_month` object — Current month recommendations
      - `strong_buy` integer — Number of analysts that give a strong buy recommendation
      - `buy` integer — Number of analysts that give a buy recommendation
      - `hold` integer — Number of analysts that give a hold recommendation
      - `sell` integer — Number of analysts that give a sell recommendation
      - `strong_sell` integer — Number of analysts that give a strong sell recommendation
    - `previous_month` object — Previous month recommendations
      - `strong_buy` integer — Number of analysts that give a strong buy recommendation
      - `buy` integer — Number of analysts that give a buy recommendation
      - `hold` integer — Number of analysts that give a hold recommendation
      - `sell` integer — Number of analysts that give a sell recommendation
      - `strong_sell` integer — Number of analysts that give a strong sell recommendation
    - `2_months_ago` object — Two months ago recommendations
      - `strong_buy` integer — Number of analysts that give a strong buy recommendation
      - `buy` integer — Number of analysts that give a buy recommendation
      - `hold` integer — Number of analysts that give a hold recommendation
      - `sell` integer — Number of analysts that give a sell recommendation
      - `strong_sell` integer — Number of analysts that give a strong sell recommendation
    - `3_months_ago` object — Three months ago recommendations
      - `strong_buy` integer — Number of analysts that give a strong buy recommendation
      - `buy` integer — Number of analysts that give a buy recommendation
      - `hold` integer — Number of analysts that give a hold recommendation
      - `sell` integer — Number of analysts that give a sell recommendation
      - `strong_sell` integer — Number of analysts that give a strong sell recommendation
  - `rating` number, double — Rating from 0 to 10 represents overall analysts' recommendation. 0 to 2 - strong sell, 2 to 4 - sell, 4 to 6 - hold, 6 to 8 - buy, 8 to 10 - strong buy.
  - `status` string, required — Response status

## Other responses

- `400`
- `401`
- `403`
- `404`
- `414`
- `429`
- `500`

---

[API](https://skmtc.net/twelvedata/apis/twelve-data-api.md) · [All operations](https://skmtc.net/twelvedata/apis/twelve-data-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/twelvedata/twelve-data-api/revisions/c4a12725cdb5/schema)
