← Back to search
25
Basic
Agentic Readiness Score
ai-tools llms-txtaiapi

Agentic Signals

📄
Found
🤖
ai-plugin.json
Not found
📖
OpenAPI Spec
Not found
🔗
Structured API
Not found
🛡
Not specified
🏷
Schema.org Markup
Not found
MCP Server
Not found

Embed this badge

Show off your agentic readiness — the badge auto-updates when your score changes.

Agentic Ready 25/100

            

llms.txt Content

# AgentSIM > Phone number provisioning API for AI agents. Provision real SIM-backed numbers, receive SMS, and extract OTPs — fully autonomous. No VoIP, no CAPTCHA, no human assumptions. Three API calls, ~3.5 seconds end to end. ## What It Does AgentSIM lets AI agents complete phone-based OTP verification without human involvement. It provisions real carrier-routed mobile numbers (line_type: mobile), receives incoming SMS, and returns structured parsed OTP codes. One session = one provision, one OTP, one release. $0.99/session. 10 free sessions/month. The core problem it solves: Twilio, Vonage, Plivo, and all cloud phone APIs return line_type: VoIP on carrier lookup. Services like Stripe, Google, WhatsApp, and banks block VoIP numbers. AgentSIM uses real SIM infrastructure so carrier lookup returns line_type: mobile — accepted everywhere. ## Quick Start ```bash pip install agentsim # or npm install @agentsim/sdk ``` ```python from agentsim import AgentSIM agentsim = AgentSIM(api_key="...") number = await agentsim.provision({"country": "US"}) otp = await number.wait_for_otp(timeout=30_000) # otp.code → "847291" # otp.service → "stripe" ``` ## Product - [Features](https://agentsim.dev/#features): Real SIM numbers, OTP parsing, per-agent scoping, MCP-native, webhook + polling - [How It Works](https://agentsim.dev/#how-it-works): Provision → Enter → Receive OTP. Three API calls, ~3.5s. - [Pricing](https://agentsim.dev/#pricing): Hobby (free, 10 sessions/mo), Builder ($0.99/session, unlimited), Enterprise (custom) - [Comparison](https://agentsim.dev/#comparison): AgentSIM vs JoltSMS ($50/mo/number) vs shared virtual (VoIP blocked) - [Sign Up](https://agentsim.dev/sign-up): 10 free sessions, no credit card ## Documentation - [API Reference](https://docs.agentsim.dev): Full REST API docs - [TypeScript SDK](https://docs.agentsim.dev/sdks/typescript): npm install @agentsim/sdk - [Python SDK](https://docs.agentsim.dev/sdks/python): pip install agentsim -