curl --request GET \
--url https://data-tools.prd.arrays.org/api/v1/stocks/company/price-target-news \
--header 'X-API-Key: <api-key>'import requests
url = "https://data-tools.prd.arrays.org/api/v1/stocks/company/price-target-news"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://data-tools.prd.arrays.org/api/v1/stocks/company/price-target-news', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://data-tools.prd.arrays.org/api/v1/stocks/company/price-target-news",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://data-tools.prd.arrays.org/api/v1/stocks/company/price-target-news"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://data-tools.prd.arrays.org/api/v1/stocks/company/price-target-news")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://data-tools.prd.arrays.org/api/v1/stocks/company/price-target-news")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"adj_price_target": 180.25,
"analyst_company": "Goldman Sachs",
"analyst_name": "John Smith",
"id": 12345,
"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",
"updated_at": "2026-09-09T03:00:00.123456Z"
}
],
"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>"
]
},
"metadata": "<unknown>",
"pagination": "<unknown>",
"request_id": "<string>",
"success": true
}{
"data": "<unknown>",
"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>"
]
},
"metadata": "<unknown>",
"pagination": "<unknown>",
"request_id": "<string>",
"success": true
}{
"data": "<unknown>",
"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>"
]
},
"metadata": "<unknown>",
"pagination": "<unknown>",
"request_id": "<string>",
"success": true
}{
"data": "<unknown>",
"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>"
]
},
"metadata": "<unknown>",
"pagination": "<unknown>",
"request_id": "<string>",
"success": true
}Get Price Target News
US share-class symbols accept both BRK.B and BRK-B. When symbol is provided, matching scalar symbol fields in the response echo the request spelling.
OpenAPI JSON Spec Retrieve price target news within a time range, ordered by published date
Feature Overview Get analyst price target news articles published within a specified time range. Returns news articles with analyst information, price targets, and publication details.
Main Use Cases
- Market Analysis: Track analyst price target updates and recommendations
- News Aggregation: Collect price target news from various publishers
- Research Tools: Analyze analyst sentiment and price target trends
- Media Applications: Display price target news in financial applications
Parameters
- symbol: Stock symbol (optional, e.g., META, AAPL)
- start_time: Start time (Unix timestamp in seconds; required unless
updated_afteris given) - end_time: End time (Unix timestamp in seconds; required unless
updated_afteris given) - limit: Maximum number of results (optional, default: 50)
- updated_after / updated_before: record-update window (Unix seconds)
- cursor: update-window continuation
Response Data Structure
Each news record includes:
- id: Arrays row id, stable for updates to the same stored row. Changes to symbol, published_at, news_url, analyst_name or price_target create a separate row and id.
- updated_at: RFC3339 UTC time Arrays last stored a changed value
- symbol: Stock symbol (e.g., “AEO”, “META”)
- observedAt: Observed timestamp (Unix seconds, optional)
- newsUrl: Full URL to the news article
- newsTitle: Title of the news article
- analystName: Name of the analyst (optional)
- analystCompany: Company of the analyst (e.g., “BMO Capital”, “Raymond James”)
- priceTarget: Price target value
- adjPriceTarget: Adjusted price target value
- priceWhenPosted: Stock price when the news was posted
- newsPublisher: Publisher name (e.g., “StreetInsider”, “TheFly”)
- newsBaseUrl: Base URL of the publisher
Usage Examples
-
Get price target news for 2024:
?start_time=1704067200&end_time=1735689600&limit=20 -
Get price target news for specific symbol:
?symbol=META&start_time=1704067200&end_time=1735689600&limit=50
Important Notes
- Time parameters are Unix timestamps in seconds
- end_time must be greater than start_time
- Results are ordered by published date (newest first)
- Limit defaults to 50 if not specified
observed_atis the FMP publish date of the article, not the time Arrays stored it. Poll onupdated_atinstead.
Update polling (docs/api/update-polling.md)
Supplying both updated_after and updated_before selects rows whose
Arrays record changed within [updated_after, updated_before), ordered by
updated_at ASC, id ASC. Times are Unix seconds. In this mode start_time
and end_time are not required and stay optional intersections on the
published date; omit them to see a revision FMP published years ago.
Each item carries the stable Arrays row id and an RFC3339 updated_at.
updated_at advances only when FMP revises a value, not on the daily
re-fetch. Send pagination.cursor back unchanged with the same window and
filters; limit may change on retry. An omitted cursor with
has_more=false means the window is drained. Start each new window without
the old cursor. This is current-state polling, not a snapshot or a deletion
feed: overlap windows and reconcile delayed writes.
curl --request GET \
--url https://data-tools.prd.arrays.org/api/v1/stocks/company/price-target-news \
--header 'X-API-Key: <api-key>'import requests
url = "https://data-tools.prd.arrays.org/api/v1/stocks/company/price-target-news"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://data-tools.prd.arrays.org/api/v1/stocks/company/price-target-news', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://data-tools.prd.arrays.org/api/v1/stocks/company/price-target-news",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://data-tools.prd.arrays.org/api/v1/stocks/company/price-target-news"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://data-tools.prd.arrays.org/api/v1/stocks/company/price-target-news")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://data-tools.prd.arrays.org/api/v1/stocks/company/price-target-news")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"adj_price_target": 180.25,
"analyst_company": "Goldman Sachs",
"analyst_name": "John Smith",
"id": 12345,
"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",
"updated_at": "2026-09-09T03:00:00.123456Z"
}
],
"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>"
]
},
"metadata": "<unknown>",
"pagination": "<unknown>",
"request_id": "<string>",
"success": true
}{
"data": "<unknown>",
"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>"
]
},
"metadata": "<unknown>",
"pagination": "<unknown>",
"request_id": "<string>",
"success": true
}{
"data": "<unknown>",
"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>"
]
},
"metadata": "<unknown>",
"pagination": "<unknown>",
"request_id": "<string>",
"success": true
}{
"data": "<unknown>",
"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>"
]
},
"metadata": "<unknown>",
"pagination": "<unknown>",
"request_id": "<string>",
"success": true
}Authorizations
API Key authentication. Example: "your-api-key-here"
Query Parameters
Stock symbol (e.g., META, AAPL). US share classes accept both BRK.B and BRK-B.
Start time (Unix timestamp in seconds). Required for browse mode; with updated_after/updated_before it becomes an optional filter narrowing published_at
End time (Unix timestamp in seconds). Required for browse mode; with updated_after/updated_before it becomes an optional filter narrowing published_at
Maximum number of results (default: 50)
Inclusive record-update bound (Unix seconds); requires updated_before
Exclusive record-update bound (Unix seconds); must exceed updated_after
Opaque update-window continuation; requires an update window

