Skip to main content
GET
/
vq
/
news
/
{symbol}
List financial news
curl --request GET \
  --url https://api.vectrade.io/v1/vq/news/{symbol} \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "id": "<string>",
      "title": "<string>",
      "summary": "<string>",
      "source": "<string>",
      "url": "<string>",
      "publishedAt": "2023-11-07T05:31:56Z",
      "symbols": [
        "<string>"
      ]
    }
  ],
  "page_info": {
    "hasNext": true,
    "cursor": "<string>",
    "totalCount": 123
  }
}

Authorizations

X-API-Key
string
header
required

VecTrade API key (e.g., vq_live_...)

Query Parameters

symbols
string

Filter by symbols (comma-separated)

limit
integer
default:20
Required range: x <= 100
cursor
string

Pagination cursor

Response

News articles

data
object[]
page_info
object