Call GET /ticks when you need the current official USDA farm market prices (hay, cattle, g
Call GET /ticks when you need the current official USDA farm market prices (hay, cattle, grain, dairy, hogs, produce). $0.05 = entire current table.
50000 (raw units)
price
5
calls / 30d
5
unique payers
2026-09-17
updated
Provider
ticks.bnm.farm · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xf59621FC406D266e18f314Ae18eF0a33b8401004",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "50000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"since": ""
},
"type": "http"
},
"output": {
"example": {
"asOf": "2026-01-15",
"fetchedAt": "2026-01-16T00:00:00Z",
"ok": true,
"product": "us-hay-cattle-grain-ticks",
"recordCount": 1,
"records": [
{
"date": "2026-01-15",
"firm": "Texas Direct Hay (example geography)",
"id": "example-hay-tx-alfalfa",
"type": "hay",
"url": "https://example.invalid/ams/ams_2707.pdf"
}
],
"source": "USDA farm market prices cache",
"status": "ok",
"ticks": [
{
"asOf": "2026-01-15",
"commodity": "Alfalfa",
"group": "hay",
"id": "example-hay-tx-alfalfa",
"market": "Texas Direct Hay (example geography)",
"price": 185,
"source": "USDA AMS Texas Direct Hay Report (example)",
"unit": "$/ton"
}
]
},
"schema": {
"properties": {
"asOf": {
"type": "string"
},
"fetchedAt": {
"type": "string"
},
"ok": {
"type": "boolean"
},
"product": {
"type": "string"
},
"recordCount": {
"type": "integer"
},
"records": {
"items": {
"type": "object"
},
"type": "array"
},
"source": {
"type": "string"
},
"status": {
"type": "string"
},
"ticks": {
"items": {
"type": "object"
},
"type": "array"
}
},
"required": [
"ok",
"product",
"status",
"fetchedAt",
"asOf",
"source",
"recordCount",
"records",
"ticks"
],
"type": "object"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"headers": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"schema": {
"type": "object"
},
"type": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://ticks.bnm.farm/ticks" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://ticks.bnm.farm/ticks");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://ticks.bnm.farm/ticks")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/7328.json, and this resource appears in /discovery/resources and /discovery/search.