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

Documentation Index

Fetch the complete documentation index at: https://docs.vectrade.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

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