Atlas
  1. Statistics
Atlas
  • Voice AI
    • Welcome to Atlas!
    • Account Setup
    • Create your first campaign
    • Knowledge
    • Edit Script
    • Advanced Script Options
    • Phone number integration
    • Twilio Integration
    • Call Forwarding
    • Calendar Integration
    • SMS Integration
    • Campaign Details
    • Add Contacts
    • Call Records
    • Account
    • Call Scheduling
    • Testing your outbound campaign
    • Clone Campaign
    • General Walkthrought
    • Calls Enrichment
      • Enriching Calls with External CRM and Data Sources
      • Go High Level - Call Enrichment
      • Pipedrive - Call Enrichment
      • Shopify - Call Enrichment
      • Monday - Call Enrichment
      • Hubspot - Call Enrichment
    • Atlas Actions
      • Atlas Actions triggering
      • HubSpot - Meetings Scheduler Integration
      • GoHighLevel - Calendar Integration
    • Campaigns
      • Create Campaign
      • Campaigns
    • Integrations
      • Zapier
      • Make
      • Keragon
      • Go High Level
        • Download Atlas App in GHL App Marketplace
        • Import the Atlas Snapshot
        • Triggers and Actions
        • Workflows
          • Workflow 01 - Lead form Submitted Website
          • Workflow 02 - CALL Lead from Website form
          • Workflow 03 - CALL Lead from Meta
          • Workflow 04 - Summary and Recording to Conversations
    • Phone Systems Integrations
      • Dialpad Integration
  • TV Ads
    • Atlas Pixel Tracker
  • API Reference
    • API Keys
    • Campaigns
      • Get all campaigns
      • Get campaign by ID
      • Delete campaign
      • Update campaign
      • Set campaign status
    • Statistics
      • Get all campaigns overview statistics
        GET
      • Get call records
        GET
      • Get campaign statistics
        GET
      • Get call record details
        GET
      • Delete call record
        DELETE
    • Calls
      • Get scheduled calls
      • Create scheduled call
    • Bookings
      • Get bookings for campaign
      • Get bookings for call
    • Knowledge Base
      • Get all knowledge base files
      • Delete knowledge file
      • Get knowledge files for campaign
      • Attach file to campaign
      • Detach file from campaign
      • Add file to collection
      • Remove file from collection
      • Get file linked campaigns
      • Upload knowledge file
      • Upload knowledge from URL
  • Schemas
    • CampaignBodyV2
    • CampaignRow
    • Voice
    • AgentRow
    • Statistics
    • CreateAgentRequest
    • UpdateAgentRequest
    • TotalStatistics
    • CallStatistics
    • SavedAgent
    • CallRecordBasic
    • Template
    • CallHistoryResponse
    • Error
    • CallHistoryEntry
    • CallMessageRole
    • CostBreakdownAnalysis
    • CostBreakdown
    • Analysis
    • Artifact
    • Cost
    • Monitor
    • CallRecordDetailed
    • Booking
    • BookingsResponse
    • ScheduledMessage
    • ScheduledCallsResponse
    • BlobFile
    • BlobFileResponse
    • KnowledgeBaseEntry
    • KnowledgeBaseResponse
  1. Statistics

Get call record details

GET
/call/{id}
Retrieves detailed information for a specific call record

Request

Authorization
API Key
Add parameter in header
api-key
Example:
api-key: ********************
or
Path Params

Responses

🟢200
application/json
Successful response
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.youratlas.com/v1/api/call/' \
--header 'api-key: <api-key>'
Response Response Example
{
    "id": "string",
    "assistantId": "string",
    "phoneNumberId": "string",
    "type": "string",
    "startedAt": "2019-08-24T14:15:22.123Z",
    "endedAt": "2019-08-24T14:15:22.123Z",
    "transcript": "string",
    "recordingUrl": "http://example.com",
    "summary": "string",
    "createdAt": "2019-08-24T14:15:22.123Z",
    "updatedAt": "2019-08-24T14:15:22.123Z",
    "orgId": "string",
    "cost": 0,
    "customer": {
        "number": "string"
    },
    "status": "string",
    "endedReason": "string",
    "messages": [
        {
            "role": "system",
            "time": 0,
            "message": "string",
            "secondsFromStart": 0,
            "source": "string",
            "endTime": 0,
            "duration": 0
        }
    ],
    "stereoRecordingUrl": "http://example.com",
    "costBreakdown": {
        "stt": 0,
        "llm": 0,
        "tts": 0,
        "vapi": 0,
        "total": 0,
        "llmPromptTokens": 0,
        "llmCompletionTokens": 0,
        "ttsCharacters": 0,
        "analysisCostBreakdown": {
            "summary": 0,
            "structuredData": 0,
            "successEvaluation": 0,
            "summaryPromptTokens": 0,
            "summaryCompletionTokens": 0,
            "structuredDataPromptTokens": 0,
            "successEvaluationPromptTokens": 0,
            "structuredDataCompletionTokens": 0,
            "successEvaluationCompletionTokens": 0
        }
    },
    "phoneCallProvider": "string",
    "phoneCallProviderId": "string",
    "phoneCallTransport": "string",
    "analysis": {
        "summary": "string",
        "successEvaluation": "string"
    },
    "artifact": {
        "recordingUrl": "http://example.com",
        "stereoRecordingUrl": "http://example.com",
        "messages": [
            {
                "role": "system",
                "time": 0,
                "message": "string",
                "secondsFromStart": 0,
                "source": "string",
                "endTime": 0,
                "duration": 0
            }
        ],
        "messagesOpenAIFormatted": [
            {
                "content": "string",
                "role": "string"
            }
        ],
        "transcript": "string"
    },
    "costs": [
        {
            "cost": 0,
            "type": "transcriber",
            "minutes": 0,
            "transcriber": {
                "model": "string",
                "provider": "string"
            },
            "model": {
                "model": "string",
                "provider": "string"
            },
            "voice": {
                "voiceId": "string",
                "provider": "string"
            },
            "subType": "string",
            "analysisType": "string",
            "promptTokens": 0,
            "completionTokens": 0,
            "characters": 0
        }
    ],
    "monitor": {
        "listenUrl": "http://example.com",
        "controlUrl": "http://example.com"
    },
    "transport": {
        "property1": "string",
        "property2": "string"
    }
}
Modified at 2026-01-22 16:08:55
Previous
Get campaign statistics
Next
Delete call record
Built with