> ## Documentation Index
> Fetch the complete documentation index at: https://docs.allium.so/llms.txt
> Use this file to discover all available pages before exploring further.

# x402 Facilitators

> x402 protocol facilitator registry across all chains

The `crosschain.agents.x402_facilitators` table contains x402 protocol facilitator addresses with their supported tokens across all chains. This registry is refreshed hourly.

## Table Columns

| Column                   | Description                             |
| ------------------------ | --------------------------------------- |
| facilitator\_id          | Unique facilitator identifier           |
| facilitator\_name        | Display name of the facilitator         |
| chain                    | Chain name                              |
| address                  | Wallet address                          |
| api\_url                 | Facilitator API endpoint                |
| docs\_url                | Documentation URL                       |
| access\_type             | public, gated, or gated\_paid           |
| fee                      | Fee percentage                          |
| token                    | Supported token address                 |
| source\_repo             | GitHub source repo name                 |
| first\_transaction\_date | Date of first on-chain transaction      |
| is\_active               | TRUE if facilitator is currently active |
| first\_seen\_at          | When record first appeared              |
| last\_seen\_at           | When record was last fetched            |
| updated\_at              | Last modification timestamp             |

## Sample Query

```sql theme={null}
SELECT 
  chain,
  facilitator_name,
  address,
  access_type,
  first_transaction_date
FROM crosschain.agents.x402_facilitators
WHERE is_active = TRUE
ORDER BY chain, first_transaction_date;
```
