agentservices

agentservices is a skill for Claude Code, Codex from vbkotecha/agentservices-api. It costs 140 tokens per session (1,613 once invoked), scanned A, original, Apache-2.0.

A collection of paid and free data APIs for AI agents, covering cryptocurrency prices, blockchain activity, market research, web research, and AI inference.

In plain words
What is it for?
Use it to retrieve crypto prices and indicators, sentiment, trends, gas prices, news, social signals, on-chain analysis, market intelligence, and other listed data.
Why use it?
It gives an agent direct access to these data sources through API calls instead of requiring separate data-gathering systems.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/vbkotecha/agentservices-api/agentservices
Any agent
npx skills add vbkotecha/agentservices-api --skill agentservices
Clone the repo
git clone --depth 1 https://github.com/vbkotecha/agentservices-api

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for agentservices

README.md
[![agentmods](https://agentmods.dev/badge/skills/vbkotecha/agentservices-api/agentservices.svg)](https://agentmods.dev/skills/vbkotecha/agentservices-api/agentservices)
Your own site
<a href="https://agentmods.dev/skills/vbkotecha/agentservices-api/agentservices"><img src="https://agentmods.dev/badge/skills/vbkotecha/agentservices-api/agentservices.svg" alt="Measured on agentmods" height="20"></a>
Per session 140 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,613 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00140 $0.01613
Opus 5 $0.00070 $0.00807
Sonnet 5 $0.00028 $0.00323
Haiku 4.5 $0.00014 $0.00161

Measured 3d ago against content hash adbcefd69798, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

agentservices scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl https://agentservices.to/v1/prices
.well-known/agentskills/agentservices/SKILL.md · 170 lines

How it starts

The opening of the file, as written. The whole thing — 170 lines — stays where its author put it; the contents beside it link to each section on GitHub.

AgentServices -- Data APIs for AI Agents

Overview

AgentServices provides 50 API endpoints for AI agents, covering crypto data, on-chain analytics, market intelligence, web research, and AI inference. Paid endpoints use x402 micropayments ($0.01-$0.25 per call in USDC on Base). 12 endpoints are completely free.

Quick Start

Free Endpoints (no payment needed)

# Crypto prices
curl https://agentservices.to/v1/prices
curl https://agentservices.to/v1/price/BTC

# Market sentiment
curl https://agentservices.to/v1/fear-greed

# Trending assets
curl https://agentservices.to/v1/trending

# Gas prices
curl https://agentservices.to/v1/gas

# News
curl https://agentservices.to/v1/news

# Social signals
curl https://agentservices.to/v1/social

Paid Endpoints (x402 payment)

Paid endpoints return HTTP 402 with payment instructions. Use any x402-compatible client (e.g., Coinbase agentic wallet) to complete payment automatically.

import requests
from x402 import facilitate

# Example: Get crypto technical indicators
response = requests.get("https://agentservices.to/v1/indicators/BTC")
if response.status_code == 402:
    payment = facilitate(response.json())
    response = requests.get(
        "https://agentservices.to/v1/indicators/BTC",
        headers={"X-PAYMENT": payment.header, "X-402-RECIPIENT": payment.recipient}
    )
print(response.json())

Endpoint Categories

Crypto Data (Free + Paid)

Endpoint Price Description
GET /v1/prices Free Top crypto prices
GET /v1/price/{symbol} Free Single asset price
GET /v1/fear-greed Free Fear & Greed index
GET /v1/indicators/{symbol} $0.02 RSI, MACD, moving averages
GET /v1/yields $0.02 Top DeFi yield pools

On-Chain Analytics (Paid)

Endpoint Price Description
GET /v1/whales $0.02 Large wallet movements
GET /v1/exchange-flows $0.02 Exchange inflow/outflow
GET /v1/correlation $0.03 Asset correlation matrix
GET /v1/defi-tvl $0.02 DeFi Total Value Locked
GET /v1/stablecoin-flows $0.02 Stablecoin supply changes
GET /v1/onchain-overview $0.15 Bundled on-chain intelligence

Read the full file on GitHub · 170 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 170 lines · 140 tokens per session scan A adbcefd69798

Subscribe to this mod's changes

agentservices is a skill published in the GitHub repository vbkotecha/agentservices-api (1 stars, last pushed 4d ago), licensed Apache-2.0. It adds 140 tokens to every session and 1,613 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

agent-payment-stats

Cross-protocol agent-economy payment metrics from Barker's index. x402 (Base) volume is on-chain verifiable; ACP / AP2 / MPP / AP4M figures are self-reported claims. Separates real vs nominal volume by filtering wash/noise sellers. Use when users ask about x402 volume, agent payment stats, agent economy metrics, or…

barkermoney/barker-mcp · 134 tokens

clicks-protocol

Query and interact with Clicks Protocol: autonomous DeFi yield for AI agents on Base. Check current APY (Aave V3 + Morpho), query agent status, simulate payment splits, view referral earnings. Zero dependencies (curl only). Use when an agent holds idle USDC, needs treasury yield data, or wants to check Clicks Protocol…

clicks-protocol/clicks-protocol · 77 tokens

alien-plugg-x402

38 paid x402 API endpoints for AI agents — Zora crypto analysis, Robinhood Chain tokenized stocks, on-chain intelligence, whale tracking, and utilities. MCP-compatible. Flat $0.003/call via USDC micropayments on Base.

michaelhutchings626-hub/alien-plugg-x402 · 57 tokens

broke2built

Broke to Built AI operates 44 x402 micropayment services on Base. All services follow the x402 protocol: send USDC, receive data. No API keys. No subscriptions. No setup.

lordbasilaiassistant-sudo/x402-wiki · 0 tokens

stipend

A non-custodial USDC wallet on Base that an AI agent installs by itself, with spending limits enforced in the signing path rather than in a prompt. Receive payments, pay HTTP 402 / x402 charges automatically, and answer whether you are worth running. No account, no API key, no human needed to install or to be paid.

stipend-sh/stipend · 74 tokens

ai-work-market

Use when an AI agent needs to receive USDC payment for work that takes more than one minute — market research, code review, translations, dataset annotation, logo design. The buyer escrows USDC, the seller delivers proof, the buyer releases or disputes. Use for work contracts, NOT for atomic sub-minute pay-per-call…

darioandyoshi-tech/ai-work-market · 76 tokens