Skip to main content
GET
/
v1
/
stocks
/
company
/
price-target-news
Get Price Target News
curl --request GET \
  --url https://data-tools.prd.arrays.org/api/v1/stocks/company/price-target-news \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "adj_price_target": 180.25,
      "analyst_company": "Goldman Sachs",
      "analyst_name": "John Smith",
      "news_base_url": "streetinsider.com",
      "news_publisher": "StreetInsider",
      "news_title": "Analyst Updates Price Target for AAPL",
      "news_url": "https://example.com/news/123",
      "observed_at": 1733411280,
      "price_target": 185.5,
      "price_when_posted": 175,
      "publish_time": "2024-12-05 07:34:56",
      "symbol": "AAPL"
    }
  ],
  "error": {
    "code": "RESOURCE_NOT_FOUND",
    "details": [
      {
        "field": "<string>",
        "got": "<string>",
        "reason": "<string>"
      }
    ],
    "docs_url": "<string>",
    "examples": [
      "<string>"
    ],
    "hint": "<string>",
    "message": "The requested resource was not found.",
    "suggestions": [
      "<string>"
    ]
  },
  "pagination": "<unknown>",
  "request_id": "<string>",
  "success": true
}

Authorizations

X-API-Key
string
header
required

API Key authentication. Example: "your-api-key-here"

Query Parameters

symbol
string

Stock symbol (e.g., META, AAPL)

start_time
integer<int64>
required

Start time (Unix timestamp in seconds)

end_time
integer<int64>
required

End time (Unix timestamp in seconds)

limit
integer<int64>

Maximum number of results (default: 20)

Response

Successfully retrieved price target news

data
object[]
error
object
pagination
any
request_id
string
success
boolean