Skip to main content
GET
/
v1
/
news
Danh sách tin tức
curl --request GET \
  --url https://api-gw.verolabs.co/v1/news \
  --header 'X-API-KEY: <api-key>'
{
  "data": [
    {
      "id": "<string>",
      "source": "<string>",
      "ticker": "<string>",
      "category": "<string>",
      "title": "<string>",
      "url": "<string>",
      "summary": "<string>",
      "published_at": "2023-11-07T05:31:56Z"
    }
  ],
  "next_cursor": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.data-hub.verolabs.co/llms.txt

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

Fetch news items by ticker, category and time range.

News feed

Build company or market news feeds.

Cursor pagination

Use cursor pagination for large news lists.

Common use cases

  • Display a news feed.
  • Filter news by ticker.
  • Load news for a selected time range.

Key parameters

  • ticker: optional ticker filter.
  • category: optional category filter.
  • from, to, limit and cursor: range and pagination controls.

Authorizations

X-API-KEY
string
header
required

API key được cấp cho tài khoản của bạn.

Query Parameters

ticker
string
Example:

"FPT"

category
string
Example:

"general"

from
string<date-time>
required

ISO 8601 UTC; phải kết thúc bằng "Z".

Example:

"2026-05-15T00:00:00Z"

to
string<date-time>
required

ISO 8601 UTC; phải kết thúc bằng "Z" và nằm sau from.

Example:

"2026-05-15T01:00:00Z"

limit
integer
default:1000
Required range: 1 <= x <= 10000
Example:

100

cursor
string

Token phân trang lấy từ next_cursor trước đó.

Response

OK

data
object[]
next_cursor
string | null