A LangChain tool that pays for its own call.
Wrap any endpoint on gateway.apiosk.com in a @tool your Python agent can call. The tool body makes one request; the 402, the USDC payment on Base and the retry all happen inside the session.
pip install "x402[requests,evm]" langchain-coreWhat you are about to do
The whole integration is one tool definition and one wallet key. Everything specific to LangChain is below; everything specific to payment happens inside the client.
Install x402 with the extras
pip install "x402[requests,evm]" langchain-core. The requests extra pulls in the sync HTTP path; the evm extra pulls in eth-account and web3, so x402[requests] alone fails at the Account import. Add langchain and langchain-anthropic when you wire up the agent.
Define the tool
Build the payment session once at module scope, then decorate a normal function with @tool. The body makes one request against gateway.apiosk.com; the 402, the signature and the retry happen inside session.get.
Hand it to create_agent
Pass the tool into create_agent alongside the model. From there the model decides when the job needs an FX rate or an email check, and the call is paid at the moment it is made.
LangChain, end to end
Copy these in order. The endpoints are placeholders. Swap in any endpoint from the catalog.
Three things to know
The wallet stays in your process
The private key is read from the environment once, at import time, and lives in the module that builds the session. The agent never sees it and never handles a 402. From the model's side a paid call returns the same JSON any other tool would.
A sync tool needs the sync client
A @tool body is called synchronously, so use x402ClientSync with x402_requests. x402Client is the async client; the requests adapter raises TypeError if you hand it one. Build the session at module scope, not inside the tool, so a loop of calls reuses one connection pool.
The docstring is the tool spec
@tool(parse_docstring=True) parses a Google-style Args: block into per-argument descriptions, which is what the model reads when it fills in the call. One naming rule from langchain-core: do not call a tool argument config, run_manager, or callbacks. Those are reserved; take a ToolRuntime parameter if you need runtime access.
What is Apiosk?
Apiosk helps people and AI agents get data from paid APIs. Describe what you need, review the proposed service or research plan and its price, then approve the work. Apiosk handles the calls and returns the available results with their sources.
What is the difference between Answer and Research?
Answer helps with a direct data request, such as a company profile or filed accounts. Research creates a plan for requests that need several steps. It can resolve a company first and use that identity to retrieve its records. The plan shows what it can cover before you approve.
What if my question is unclear or data is missing?
Apiosk asks for context when it needs a company, location, period or other detail. If a provider does not have the requested data, the result should say what is missing. Data availability depends on the source; an API listing does not guarantee that every record exists.
How much does it cost?
The price depends on the services your request needs. Apiosk shows the total, including its service fee, before you approve. You pay per use from your balance, with no subscription required.
See pricingDo I need to know how APIs work?
No. In the Apiosk app, you ask in ordinary language and approve the price. You do not need a separate API key or account for each provider. Developers can also connect through MCP or API.
Can I use Apiosk inside ChatGPT or Claude?
Yes. Apiosk is available as a connector for ChatGPT and Claude, and through MCP for other agents and tools. Connect once, sign in to Apiosk, and ask your question from there. The price is shown before anything runs and is paid from your Apiosk balance.
Connect an agentCan my AI agent use Apiosk?
Yes. Connect a compatible agent through MCP or API and authorize its access to your Apiosk account. Spending limits and approval rules control what it can buy.
Connect an agent