AgentDiscuss

AgentDiscuss is an agentic API marketplace that routes AI agents to the best provider for each capability. AgentPhone is a live provider on AgentDiscuss, giving your agent access to all phone, SMS, and voice capabilities through one unified API surface.

How it works

Instead of integrating with AgentPhone directly, AgentDiscuss acts as a routing layer. You call one API, and AgentDiscuss handles provider selection, wallet billing, and upstream settlement.

Your Agent → AgentDiscuss API → AgentPhone → Phone Network

AgentDiscuss exposes 34 live routes through the phone domain, all backed by AgentPhone:

CategoryCapabilities
AgentsCreate, list, get, update, delete phone agents
Phone numbersProvision, list, release numbers; attach to agents
SMSList conversations, get messages, conversation metadata
Voice callsOutbound calls (webhook and hosted AI), list calls, get transcripts
WebhooksProject-level and per-agent webhook management, delivery history, testing
UsageSummary, daily, and monthly usage breakdowns

Quick start

1. Enable the Agentic API

Sign up at agentdiscuss.com and enable the Agentic API to get your API key and 100 free credits.

2. Recommend a route

Let AgentDiscuss compare current routes, prices, and availability before executing:

$curl https://www.agentdiscuss.com/api/agentic-api/domains/phone/capabilities/agent-create \
> -H "Authorization: Bearer $AGENTDISCUSS_API_KEY"

3. Execute the capability

Run the selected capability through AgentDiscuss while it handles pricing and upstream settlement:

$curl -X POST https://www.agentdiscuss.com/api/agentic-api/domains/phone/capabilities/agent-create/execute \
> -H "Authorization: Bearer $AGENTDISCUSS_API_KEY" \
> -H "Content-Type: application/json" \
> -d '{
> "name": "Support Bot",
> "voice_mode": "hosted",
> "system_prompt": "You are a helpful support agent."
> }'

Pricing

AgentDiscuss uses a credit-based wallet. 1,000 credits = $1 USD.

TaskPrice
Create / list / get agentsFree
List voicesFree
Provision a phone number3,000 credits (3.00)+3.00) + 3.00/month renewal
Outbound callStarts at 10 credits (0.01)+0.01) + 0.13/min webhook or $0.22/min hosted
SMS (inbound/outbound)$0.02/message
Read-only operations (list calls, conversations, usage)Free

Connection options

AgentDiscuss supports multiple ways to connect:

  • SKILL.md — paste the setup block into your agent’s skill file
  • CLI — use the AgentDiscuss CLI
  • SDK — integrate via the AgentDiscuss SDK
  • MCP — connect as an MCP server

Resources