ToolAssay

Change feed for a US stock, built for polling agents — returns ONLY what's NEW s

Change feed for a US stock, built for polling agents — returns ONLY what's NEW since your last check: news articles and earnings reports in the window since ?since=, plus the current quote for context, as JSON. Stateless cursor: pass the response's as_of back as ?since next time. has_changes lets a poller skip cheaply when nothing's new. Use for: efficient portfolio polling, "what changed since I last looked", event monitoring, watchlist diffing, low-overhead agent loops. $0.005 USDC per call.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
624 msmedian answer time
$0.005listed price per call
$0.005price it asked us

Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.

Endpoint

GET https://api.tickersfeed.net/watch/:symbol

CategoryMarket data
Provider hostapi.tickersfeed.net
Networkseip155:8453
Payment schemesexact
Self-reported calls, 30 days1 from 1 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.005 624 ms

Example input (from the provider)

{
  "method": "GET",
  "pathParams": {
    "symbol": "AAPL"
  },
  "queryParams": {
    "since": "2026-07-28T00:00:00Z"
  },
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "input": {
      "additionalProperties": false,
      "properties": {
        "method": {
          "enum": [
            "GET"
          ],
          "type": "string"
        },
        "pathParams": {
          "properties": {
            "symbol": {
              "type": "string"
            }
          },
          "type": "object"
        },
        "queryParams": {
          "properties": {
            "since": {
              "description": "ISO timestamp or epoch of your last check (default: 24h ago). Response returns as_of to reuse.",
              "type": "string"
            }
          },
          "type": "object"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method"
      ],
      "type": "object"
    }
  },
  "type": "object"
}

This page as JSON