Reports API
vonage · Company
The Vonage Business Cloud Reports API enables you to retrieve call logs for your account. Your application must subscribe to the Reports API suite to use this API.
Authentication
No authentication requiredFree to use with no key needed.
Sample Requests
GET
Retrieve call logs for your account
Retrieve call logs for your account
https://api.apis.guru/v2/specs/vonage.com/reports/1.0.1/accounts/{account_id}/call-logs?to=2024-12-31&from=2024-01-01&page=0&end:gte=example&end:lte=example&direction=Inbound&page_size=10&start:gte=example&start:lte=example&source_user=example&destination_user=example
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/vonage.com/reports/1.0.1/accounts/{account_id}/call-logs?to=2024-12-31&from=2024-01-01&page=0&end:gte=example&end:lte=example&direction=Inbound&page_size=10&start:gte=example&start:lte=example&source_user=example&destination_user=example"import requests
params = {
"to": "2024-12-31",
"from": "2024-01-01",
"page": "0",
"end:gte": "example",
"end:lte": "example",
"direction": "Inbound",
"page_size": "10",
"start:gte": "example",
"start:lte": "example",
"source_user": "example",
"destination_user": "example"
}
response = requests.get(
"https://api.apis.guru/v2/specs/vonage.com/reports/1.0.1/accounts/{account_id}/call-logs",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/vonage.com/reports/1.0.1/accounts/{account_id}/call-logs');
url.searchParams.set('to', '2024-12-31');
url.searchParams.set('from', '2024-01-01');
url.searchParams.set('page', '0');
url.searchParams.set('end:gte', 'example');
url.searchParams.set('end:lte', 'example');
url.searchParams.set('direction', 'Inbound');
url.searchParams.set('page_size', '10');
url.searchParams.set('start:gte', 'example');
url.searchParams.set('start:lte', 'example');
url.searchParams.set('source_user', 'example');
url.searchParams.set('destination_user', 'example');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/vonage.com/reports/1.0.1/accounts/{account_id}/call-logs")
q := baseURL.Query()
q.Set("to", "2024-12-31")
q.Set("from", "2024-01-01")
q.Set("page", "0")
q.Set("end:gte", "example")
q.Set("end:lte", "example")
q.Set("direction", "Inbound")
q.Set("page_size", "10")
q.Set("start:gte", "example")
q.Set("start:lte", "example")
q.Set("source_user", "example")
q.Set("destination_user", "example")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/vonage.com/reports/1.0.1/accounts/{account_id}/call-logs")
uri.query = URI.encode_www_form({
"to" => "2024-12-31",
"from" => "2024-01-01",
"page" => "0",
"end:gte" => "example",
"end:lte" => "example",
"direction" => "Inbound",
"page_size" => "10",
"start:gte" => "example",
"start:lte" => "example",
"source_user" => "example",
"destination_user" => "example"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/vonage.com/reports/1.0.1/accounts/{account_id}/call-logs?" . http_build_query([
"to" => "2024-12-31",
"from" => "2024-01-01",
"page" => "0",
"end:gte" => "example",
"end:lte" => "example",
"direction" => "Inbound",
"page_size" => "10",
"start:gte" => "example",
"start:lte" => "example",
"source_user" => "example",
"destination_user" => "example"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Postman Setup Guide
- See official documentation for authentication and setup.
What can you build with Reports API?
Reports API is a Company API. Developers commonly use company APIs for:
- enriching CRM records with company firmographics
- building lead-generation and prospecting tools
- verifying business identity and registration details
- monitoring competitors and market intelligence
- powering B2B data enrichment pipelines
No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. Reports API is free to use, making it a low-risk choice to experiment with.
New to APIs? Read our beginner's guide