↯ Global Connectivity · 190+ Countries · REST API

eSIM infrastructure
for AI agents

Provision eSIMs for your autonomous agents via API. Works everywhere, charges nowhere extra, and never expires — so your agents stay connected as long as they need to.

Worldwide coverage
Zero overage fees
Never expires
Start Building → View API Docs
// Provision once. Connect forever. No expiry, no overages.
const sim = await aiagentesim.provision({
  agentId: "agent_7f2k9x",
  coverage: "WORLDWIDE",
  overage: "false", // always
  expiry: "never" // never
});
 
// → { iccid: "89...", status: "active", expiry: "∞" }
190+ Countries covered
$0 Overage charges
SIM validity
<2s Activation time

Worldwide

One eSIM that works across 190+ countries with automatic carrier switching. No regional plans, no plan-switching logic, no dead zones.

190+ countries · 1 SIM

No overages

Fixed data pricing, period. Your agents will never generate a surprise bill by roaming into a new country or exceeding a local carrier's cap.

Flat pricing · Zero surprises

Never expires

Provision once and the SIM stays active indefinitely. No re-provisioning loops, no TTL management, no connectivity gaps mid-mission.

Lifetime validity · Always ready
// Core capabilities

Built for machine-speed
connectivity

Every primitive you need to give your AI agents autonomous, programmable cellular connectivity — globally, permanently, predictably.

INSTANT PROVISION

Sub-second activation

Programmatically provision eSIMs via REST API. Agents spin up connectivity on demand, anywhere in the world, without human intervention.

FLAT-RATE DATA

No overage, ever

Fixed pricing no matter which country your agent operates in. Cross a border, switch continents — the rate stays the same. Your cost model stays predictable.

LIFETIME VALIDITY

SIMs that never expire

No TTL management, no re-provisioning cron jobs. Provision once and your agent's SIM stays active indefinitely — ready whenever the next mission starts.

MULTI-AGENT MGMT

Fleet orchestration

Manage thousands of agent SIMs under a single account tree. Group by project, tag by purpose, report by cost center.

REAL-TIME TELEMETRY

Live usage webhooks

Streaming events for every session and data usage tick. Feed your agent's context window with live network telemetry for autonomous decisions.

ZERO HARDWARE

Software-only delivery

No physical SIMs. No logistics. Profile delivered as QR or API token. Ideal for virtual agents, IoT, and remote hardware fleets.

Simple, predictable endpoints

Designed to be called autonomously. Every endpoint returns machine-readable JSON with full OpenAPI spec.

POST /v1/sims Provision new eSIM
GET /v1/sims/{iccid} Get SIM status & usage
POST /v1/sims/{iccid}/pause Pause connectivity
POST /v1/sims/{iccid}/topup Add data allowance
GET /v1/sims/{iccid}/sessions Live session stream
DEL /v1/sims/{iccid} Terminate & reclaim
// npm install @aiagentesim/sdk
 
import { AgentESIM } from '@aiagentesim/sdk';
 
const client = new AgentESIM({
  apiKey: process.env.AIAGENTESIM_KEY
});
 
// Worldwide, no overages, never expires
const sim = await client.sims.create({
  agentId: "my-agent-001",
  coverage: "WORLDWIDE",
  dataGB: 10
});
 
sim.on('data.threshold', (e) => {
  agent.topup(e.simId);
});
# pip install aiagentesim
 
from aiagentesim import AgentESIM
 
client = AgentESIM(
  api_key=os.environ["AIAGENTESIM_KEY"]
)
 
# Worldwide, no overages, never expires
sim = client.sims.create(
  agent_id="my-agent-001",
  coverage="WORLDWIDE",
  data_gb=10
)
 
print(sim.iccid, sim.status)
# Provision a worldwide eSIM
 
curl -X POST \
  https://api.aiagentesim.com/v1/sims \
  -H "Authorization: Bearer $KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "agentId": "my-agent-001",
    "coverage": "WORLDWIDE",
    "dataGB": 10
  }'
// Who builds with us

From prototype
to planetary scale

Autonomous field agents

Robots and edge devices running AI workloads cross borders constantly. With worldwide coverage, zero overages, and no expiry, you provision once and forget — the SIM keeps up wherever the agent goes.

AI-powered travel agents

LLM-driven assistants that purchase and activate eSIMs on behalf of users. Your agent never has to worry about which country plan to pick — one global SIM handles everything.

Multi-agent orchestration

Swarm architectures where each agent gets its own isolated cellular channel. Provision at startup, never re-provision. Each SIM bills flat — no surprise costs from cross-border data.

IoT fleet operators

Deploy sensors worldwide with one SIM SKU. No regional profiles, no expiry windows, no maintenance overhead. Provision in bulk via API and manage from a single dashboard.

// Transparent pricing

Pay per agent,
not per country

Every plan includes worldwide coverage, zero overage charges, and SIMs that never expire. No hidden fees, no regional surcharges.

Starter
$0
Free · up to 10 active SIMs
  • 10 concurrent SIMs
  • 1 GB / SIM / month
  • Worldwide coverage
  • No overage charges
  • SIMs never expire
  • REST API access
Enterprise
Custom
Volume pricing · SLA
  • Dedicated infrastructure
  • Custom carrier agreements
  • Worldwide coverage
  • No overage charges
  • SIMs never expire
  • White-label option
  • Dedicated engineer

Connect anywhere.
Bill nothing extra.
Run forever.

Start provisioning worldwide eSIMs via API in under 5 minutes.

Get API Key → Read the Docs