RealFlow.so
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

  • addresses string[] 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"

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