POST
/v1/prices/bulk 1 credit per item Bulk prices
Pricing note: Per address; max 100 per request
Request
Request body
Content-Type: application/json · required
-
addressesstring[] required
Example
curl -X POST \
-H "X-API-Key: $REALFLOW_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"addresses": [
"string"
]
}' \
"https://api.realflow.so/v1/prices/bulk" const res = await fetch("https://api.realflow.so/v1/prices/bulk", {
method: "POST",
headers: {
"X-API-Key": process.env.REALFLOW_API_KEY,
"Content-Type": "application/json",
},
body: JSON.stringify({
"addresses": [
"string"
]
}),
});
const data = await res.json();
console.log(data); const res = await fetch("https://api.realflow.so/v1/prices/bulk", {
method: "POST",
headers: {
"X-API-Key": process.env.REALFLOW_API_KEY,
"Content-Type": "application/json",
},
body: JSON.stringify({
"addresses": [
"string"
]
}),
});
const data = await res.json();
console.log(data); Response 200
{
"prices": [
{
"address": "string",
"usd": "string",
"price_change_1h_pct": "string",
"price_change_24h_pct": "string",
"updated_at": "2026-05-20T12:00:00Z"
}
]
} Error responses
All errors follow the standard envelope — see error codes.
- 400401