{
  "generated_at": "2026-04-24T15:01:35.625676+00:00",
  "slug": "slamai-dev-token-transfers",
  "title": "SlamAI \u00b7 Token Transfer History",
  "url": "https://slamai.dev/token/transfers",
  "category": "data",
  "summary": "Fetch token transfer events with filtering by participant, direction, and time range.",
  "seo": {
    "title": "SlamAI Token Transfers API | x402 Free Tier",
    "description": "Query token transfer history via SlamAI. Free tier available. Filter by address, direction, block range on Ethereum and Base. x402 protocol."
  },
  "use_cases": [
    "Track token movements for specific addresses",
    "Filter transfers by sent/received direction",
    "Query historical transfers by block or timestamp range"
  ],
  "ideal_buyer": "Onchain analysts, compliance tools, and trading agents tracking token flow history.",
  "example_prompt": "Get all USDC transfers where 0x742d35... received tokens in the last 1000 blocks on Base.",
  "example_request_body": {
    "address": "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb",
    "direction": "received",
    "blockchain": "base"
  },
  "risk_notes": [
    "May process personal / identity data."
  ],
  "pricing_sanity": {
    "flag": "unknown",
    "median_category_atomic": 0
  },
  "pricing_review_required": false,
  "pricing_decimal_suspect": false,
  "trust_tier": "indexed_external",
  "accepts": [
    {
      "scheme": "exact",
      "network": "base",
      "pay_to": "0xd85096faec1ac03075667b4c1a1661f5623bf111",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "max_amount_required_atomic": "0",
      "max_timeout_seconds": 300,
      "mime_type": "application/json",
      "description": "Returns token transfers for a specific token address,\nwith optional filters by participant address, direction, block/timestamp range, and pagination.",
      "verified": false,
      "hints": {
        "input": {
          "type": "http",
          "method": "GET",
          "queryParams": {
            "num": {
              "type": "integer",
              "description": "The maximum number of transfer records to return (1-1000)."
            },
            "order": {
              "enum": [
                "asc",
                "desc"
              ],
              "type": "string",
              "description": "Sort order for results: 'asc' (oldest first) or 'desc' (newest first)."
            },
            "address": {
              "type": "string",
              "description": "Filter transfers where this address is either the sender or the receiver."
            },
            "direction": {
              "enum": [
                "sent",
                "received",
                "all"
              ],
              "type": "string",
              "description": "Specifies transfer direction relative to address."
            },
            "blockchain": {
              "enum": [
                "ethereum",
                "base"
              ],
              "type": "string",
              "required": true,
              "description": "The blockchain to query"
            },
            "start_block": {
              "type": "integer",
              "description": "Block number to start the search from (inclusive)."
            },
            "estimate_cost": {
              "type": "boolean",
              "description": "When true, returns only the SLAM token cost for this query."
            },
            "token_address": {
              "type": "string",
              "required": true,
              "description": "The ERC-20 token contract address to fetch transfers for (required)."
            },
            "start_log_index": {
              "type": "integer",
              "description": "Log index within the starting block to resume pagination or refine the starting point."
            },
            "start_timestamp": {
              "type": "string",
              "description": "Start searching from this UTC timestamp (inclusive). Overrides start_block when provided."
            }
          }
        },
        "output": {
          "status": 200,
          "content": {
            "application/json": {
              "schema": {
                "oneOf": [
                  {
                    "type": "object",
                    "properties": {
                      "slam": {
                        "type": "number",
                        "format": "double",
                        "description": "The SLAM token cost for this API call."
                      },
                      "chain": {
                        "type": "string",
                        "description": "The blockchain network name (e.g., 'base')."
                      },
                      "cursor": {
                        "type": "object",
                        "properties": {
                          "start_block": {
                            "type": "integer",
                            "format": "int32",
                            "description": "The block number at which to continue fetching results."
                          },
                          "start_log_index": {
                            "type": "integer",
                            "format": "int32",
                            "description": "The log index within the block at which to continue."
                          }
                        }
                      },
                      "transfers": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "to": {
                              "type": "object",
                              "properties": {
                                "name": {
                                  "type": "string",
                                  "nullable": true,
                                  "description": "Optional human-readable label for the wallet."
                                },
                                "labels": {
                                  "type": "string",
                                  "nullable": true,
                                  "description": "Optional tags or labels describing the wallet."
                                },
                                "address": {
                                  "type": "string",
                                  "description": "Wallet address."
                                }
                              }
                            },
                            "from": {
                              "type": "object",
                              "properties": {
                                "name": {
                                  "type": "string",
                                  "nullable": true,
                                  "description": "Optional human-readable label for the wallet."
                                },
                                "labels": {
                                  "type": "string",
                                  "nullable": true,
                                  "description": "Optional tags or labels describing the wallet."
                                },
                                "address": {
                                  "type": "string",
                                  "description": "Wallet address."
                                }
                              }
                            },
                            "token": {
                              "type": "object",
                              "properties": {
                                "name": {
                                  "type": "string",
                                  "description": "Full token name."
                                },
                                "symbol": {
                                  "type": "string",
                                  "description": "Token symbol."
                                },
                                "address": {
                                  "type": "string",
                                  "description": "Token contract address."
                                }
                              }
                            },
                            "amount": {
                              "type": "object",
                              "properties": {
                                "raw": {
                                  "type": "number",
                                  "format": "double",
                                  "description": "Raw transfer amount (unadjusted)."
                                },
                                "decimals": {
                                  "type": "number",
                                  "format": "double",
                                  "description": "Normalized amount using token\u2019s decimals."
                                }
                              }
                            },
                            "transaction": {
                              "type": "object",
                              "properties": {
                                "utc": {
                                  "type": "string",
                                  "description": "UTC timestamp of the transaction (ISO 8601 format)."
                                },
                                "hash": {
                                  "type": "string",
                                  "description": "Transaction hash."
                                },
                                "block": {
                                  "type": "integer",
                                  "format": "int32",
                                  "description": "Block number containing the transaction."
                                },
                                "method": {
                                  "type": "string",
                                  "nullable": true,
                                  "description": "Decoded contract method name (if available)."
                                },
                                "log_index": {
                                  "type": "integer",
                                  "format": "int32",
                                  "description": "Log index for this transfer within the block."
                                }
                              }
                            }
                          }
                        },
                        "description": "List of token transfer records matching the query."
                      }
                    }
                  },
                  {
                    "type": "object",
                    "properties": {
                      "slam": {
                        "type": "number",
                        "format": "double"
                      }
                    }
                  }
                ]
              }
            }
          },
          "description": "OK"
        }
      }
    }
  ],
  "origin": {
    "slug": "slamai-dev",
    "host": "slamai.dev",
    "title": "slamai.dev",
    "description": "An x402-payable API origin hosted at slamai.dev. No service description available due to server error.",
    "url": "https://slamai.dev"
  },
  "json_ld": {
    "@id": "https://x402all.com/resource/slamai-dev-token-transfers",
    "url": "https://x402all.com/resource/slamai-dev-token-transfers",
    "name": "SlamAI \u00b7 Token Transfer History",
    "@type": "WebAPI",
    "offers": {
      "url": "https://x402all.com/resource/slamai-dev-token-transfers",
      "@type": "Offer",
      "price": "0",
      "availability": "https://schema.org/InStock",
      "priceCurrency": "USDC",
      "priceSpecification": {
        "@type": "UnitPriceSpecification",
        "price": "0",
        "unitText": "call",
        "priceCurrency": "USDC"
      },
      "eligibleCustomerType": "Agent",
      "additionalProperty": [
        {
          "@type": "PropertyValue",
          "name": "paymentNetwork",
          "value": "base"
        },
        {
          "@type": "PropertyValue",
          "name": "paymentAsset",
          "value": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
        }
      ]
    },
    "sameAs": "https://slamai.dev/token/transfers",
    "@context": "https://schema.org",
    "provider": {
      "@id": "https://x402all.com/server/slamai-dev",
      "url": "https://slamai.dev",
      "name": "slamai.dev",
      "@type": "Organization"
    },
    "identifier": "slamai-dev-token-transfers",
    "description": "Query token transfer history via SlamAI. Free tier available. Filter by address, direction, block range on Ethereum and Base. x402 protocol.",
    "potentialAction": {
      "@type": "BuyAction",
      "target": "https://axon402.com/test-buy?resource=slamai-dev-token-transfers",
      "description": "Test-buy this endpoint on AXON"
    },
    "applicationCategory": "data"
  },
  "axon_deep_link": "https://axon402.com/test-buy?resource=slamai-dev-token-transfers"
}
