Analyze a phone call transcript
Analyze a phone call transcript: classify the outcome (for example resolved, escalated, no answer, follow-up needed), extract any commitments made by either party, note objections raised, and list clear next steps. Base every finding strictly on what the transcript states -- do not infer intent beyond the words used. Uses buyer-supplied information only; no external research or outbound actions. Returns a draft for human review.
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://www.tradepilotusa.com/api/agent-commerce/v1/services/call_transcript_analysis/execute
| Category | Code and developer |
|---|---|
| Provider host | www.tradepilotusa.com |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-26 | valid payment request | 402 | $0.25 | 1124 ms |
Example input (from the provider)
{
"body": {
"audience": "An internal supervisor reviewing call quality and follow-through.",
"brief": "Analyze this support call transcript and tell us the outcome, any commitments made, and next steps.",
"source_text": "Agent: Thanks for calling, how can I help? Customer: My invoice shows a late fee but I paid on the 3rd. Agent: Let me check... you're right, I see the payment posted on the 3rd, the fee was applied in error. I'll remove it and email confirmation today. Customer: Great, thank you. Agent: Also wanted to flag your service renews in two weeks -- do you want to keep the current plan? Customer: Yes, keep it as is. Agent: Done, you'll get a renewal confirmation as well."
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"audience": {
"maxLength": 500,
"type": "string"
},
"brief": {
"maxLength": 12000,
"minLength": 10,
"type": "string"
},
"source_text": {
"maxLength": 32000,
"minLength": 20,
"type": "string"
}
},
"required": [
"brief",
"source_text"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}