Skip to content
Velo

News

Curated crypto news stories, over HTTP and WebSocket.

Get news

GET/api/n/news

Returns past news stories as JSON.

Query Parameters

begin
integer <int64>

Only return stories published after this millisecond timestamp. Defaults to 0, returning all stories.

Example1767225600000

Header Parameters

AuthorizationRequired
string

HTTP basic auth: api as the username and your API key as the password. With curl, pass --user "api:your_api_key". The equivalent raw header is Basic base64(api:your_api_key).

ExampleBasic $(printf "api:your_api_key" | base64)

Responses

429Rate limit exceeded.

Stream news (WebSocket)

GET/api/w/connect

Streams news stories in real time over a WebSocket:

wss://api.velo.xyz/api/w/connect

Header Parameters

AuthorizationRequired
string

HTTP basic auth: api as the username and your API key as the password. If your WebSocket client cannot set headers, append the key to the path instead: /api/w/connect/your_api_key.

ExampleBasic $(printf "api:your_api_key" | base64)

Responses

400The request is not a valid WebSocket upgrade.