Skip to main content
The polygon.agents.x402_facilitators table contains x402 protocol facilitator addresses with their supported tokens. This registry is refreshed hourly.

Table Columns

ColumnDescription
facilitator_idUnique facilitator identifier
facilitator_nameDisplay name of the facilitator
chainChain name
addressWallet address (lowercased)
api_urlFacilitator API endpoint
docs_urlDocumentation URL
access_typepublic, gated, or gated_paid
feeFee percentage
tokenSupported token contract address
source_repoGitHub source repo name
first_transaction_dateDate of first on-chain transaction
is_activeTRUE if facilitator is currently active
first_seen_atWhen record first appeared
last_seen_atWhen record was last fetched
updated_atLast modification timestamp

Sample Query

SELECT 
  facilitator_name,
  address,
  access_type,
  fee,
  first_transaction_date
FROM polygon.agents.x402_facilitators
WHERE is_active = TRUE
ORDER BY first_transaction_date;