Busiest priced services
Roundhouse AI · run 1 time · last 19d ago
Sign in to runRunning a query is free on the free plan, up to your monthly Query Units.
SQL
select service_name, resource, round(price_usdc::numeric, 6) as price_usdc,
l30_total_calls, l30_unique_payers, is_live
from external_resources
where price_usdc is not null and price_usdc > 0 and l30_total_calls > 0
order by l30_total_calls desc
limit 30Take it elsewhere
- Download the last computed result as CSV — paid plans. It exports the cache and never runs the query, so a download never spends Query Units.