Loading...
Loading...
AI Agent native API provider — no API keys, no signups, no subscriptions. Access 337+ APIs including Finance, Social, Real Estate, and more. Just pay with USDC per request via x402.
npx skill4agent add agentapi/agentapi agentapi| Path | Price | Description |
|---|---|---|
| $0.001 | Seeking Alpha auto-complete |
| $0.001 | Get realtime quotes |
| $0.001 | Yahoo Finance quote |
| $0.001 | Search TikTok users |
| $0.001 | Search TikTok sounds |
| $0.001 | Get Twitter followers |
| $0.001 | Get Twitter timeline |
| $0.001 | Get Twitter tweets |
| $0.001 | List properties for sale/rent |
| $0.001 | Location auto-complete |
| $0.001 | Google search results |
| $0.001 | Latest crypto news |
https://agentapi-production.up.railway.appnpx awal@latestnpx awal@latest status# Step 1: Send OTP to your email
npx awal@latest auth login user@example.com
# Output: flowId: abc123...
# Step 2: Verify with the 6-digit code from email
npx awal@latest auth verify abc123 123456
# Confirm authentication
npx awal@latest statusauthenticate-walletnpx awal@latest balancenpx awal@latest shownpx awal@latest addressfund| Requirement | Check | Skill |
|---|---|---|
| Wallet authenticated | | |
| USDC balance | | |
npx awal@latest x402 paynpx awal@latest x402 pay "https://agentapi-production.up.railway.app/finance/seeking-alpha/market/get-realtime-quotes?symbols=aapl,tsla"npx awal@latest x402 pay "https://agentapi-production.up.railway.app/finance/yahoo-finance/v6/finance/quote?symbols=aapl"npx awal@latest x402 pay "https://agentapi-production.up.railway.app/social/tiktok/search/search-user?query=crypto"npx awal@latest x402 pay "https://agentapi-production.up.railway.app/social/tiktok/search/search-sound?query=music"npx awal@latest x402 pay "https://agentapi-production.up.railway.app/data/social/twitter/followers?id=44196397&count=20"idnpx awal@latest x402 pay "https://agentapi-production.up.railway.app/data/social/twitter/timeline?id=44196397"npx awal@latest x402 pay "https://agentapi-production.up.railway.app/data/social/twitter/tweets?id=44196397"npx awal@latest x402 pay "https://agentapi-production.up.railway.app/search/google?query=bitcoin+price"npx awal@latest x402 pay "https://agentapi-production.up.railway.app/realty/properties/v3/list" -X POST -d '{"city": "San Francisco, CA"}'-X POST -d '{...}'npx awal@latest x402 pay "https://agentapi-production.up.railway.app/realty/locations/v2/auto-complete?input=San+Francisco"/finance/seeking-alpha/market/get-realtime-quotes{
"result": {
"quotes": [
{
"symbol": "AAPL",
"price": 178.52,
"change": 2.34,
"change_percent": 1.33
}
]
}
}/data/social/twitter/followers{
"result": {
"users": [
{
"id": "123456789",
"name": "John Doe",
"username": "johndoe",
"followers_count": 1000,
"profile_image_url": "https://..."
}
]
}
}/search/google{
"result": {
"results": [
{
"title": "Bitcoin Price",
"link": "https://example.com/bitcoin",
"snippet": "Bitcoin is trading at..."
}
]
}
}/realty/properties/v3/detail{
"result": {
"property_id": "12345",
"listing_id": "67890",
"price": 1250000,
"address": {
"street": "123 Main St",
"city": "San Francisco",
"state": "CA",
"zip_code": "94102"
},
"beds": 3,
"baths": 2,
"sqft": 1800
}
}curl https://agentapi-production.up.railway.app/catalog[
{ "path": "/finance/seeking-alpha/v2/auto-complete", "method": "GET", "price": "$0.001", "description": "Seeking Alpha auto-complete" },
{ "path": "/social/tiktok/search/search-user", "method": "GET", "price": "$0.001", "description": "Search TikTok users" },
{ "path": "/realty/properties/v3/list", "method": "POST", "price": "$0.001", "description": "List properties for sale/rent" },
...
]curl https://agentapi-production.up.railway.app/health{"status": "ok"}| Error | Cause | Fix |
|---|---|---|
| HTTP 402 | Payment required | Use |
| HTTP 502 | Upstream API error | The backend service may be temporarily unavailable. Retry after a few seconds |
| Wallet not authenticated | Run |
| Not enough USDC | Run |
| Empty response | Invalid parameters | Check query parameters — e.g. Twitter endpoints require |
| Real Estate 400 | Missing request body | List properties endpoint requires POST with JSON body: |