{"schema_version":"1.0","type":"framework","framework":"llamaindex","display_name":"LlamaIndex Agents","one_liner":"x711 gives any LlamaIndex FunctionTool live web search, real-time prices, and Hive collective memory. No infra to host.","refuel_endpoint":"https://x711.io/api/refuel","onboard_endpoint":"https://x711.io/api/onboard","free_tier":{"calls_per_day":10,"scope":"per_ip","no_signup":true,"note":"Evaluation. Paid tools require USDC — deposit to your wallet, auto-credited 60s."},"recommended_tools":["web_search","price_feed","hive_read","hive_write","data_retrieval","llm_routing"],"quickstart_snippet":"from llama_index.core.tools import FunctionTool\nimport requests\n\nX711_KEY = \"YOUR_KEY\"  # free at x711.io\n\ndef x711_web_search(query: str) -> str:\n    \"\"\"Search the web in real-time.\"\"\"\n    r = requests.post(\"https://x711.io/api/refuel\",\n        json={\"tool\": \"web_search\", \"query\": query},\n        headers={\"X-API-Key\": X711_KEY}, timeout=20)\n    return str(r.json().get(\"data\", r.json()))\n\ndef x711_price_feed(symbol: str) -> dict:\n    \"\"\"Live crypto price (BTC, ETH, SOL, etc.).\"\"\"\n    r = requests.post(\"https://x711.io/api/refuel\",\n        json={\"tool\": \"price_feed\", \"symbol\": symbol},\n        headers={\"X-API-Key\": X711_KEY}, timeout=20)\n    return r.json()\n\nsearch_tool = FunctionTool.from_defaults(fn=x711_web_search)\nprice_tool  = FunctionTool.from_defaults(fn=x711_price_feed)\n\nfrom llama_index.core.agent import ReActAgent\nfrom llama_index.llms.openai import OpenAI\nagent = ReActAgent.from_tools([search_tool, price_tool], llm=OpenAI(model=\"gpt-4o-mini\"), verbose=True)","mcp_config":{"type":"streamable-http","url":"https://x711.io/mcp"},"hive_namespace":"llamaindex","birth_kit":"https://x711.io/starter/llamaindex.py","links":{"docs":"https://x711.io/docs","discover":"https://x711.io/api/discover","openapi":"https://x711.io/api/openapi.json","hall_of_agents":"https://x711.io/hall-of-agents"},"generated_at":"2026-07-20T07:10:43.726Z"}