www.zoomconnect.com
zoomconnect · Company
The world's greatest SMS API
Authentication
Sample Requests
Returns data from the statistics report. Note that by default the statistics shown are based on the number of messages, use the calculateCreditValue should you wish to calculate the statistics based on credit value.
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/zoomconnect.com/1/api/rest/v1/account/statistics?to=2024-12-31&from=2024-01-01&campaign=example&userEmailAddress=example&calculateCreditValue=true&includeRefundedAndOptout=true"
import requests
params = {
"to": "2024-12-31",
"from": "2024-01-01",
"campaign": "example",
"userEmailAddress": "example",
"calculateCreditValue": "true",
"includeRefundedAndOptout": "true"
}
response = requests.get(
"https://api.apis.guru/v2/specs/zoomconnect.com/1/api/rest/v1/account/statistics",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/zoomconnect.com/1/api/rest/v1/account/statistics');
url.searchParams.set('to', '2024-12-31');
url.searchParams.set('from', '2024-01-01');
url.searchParams.set('campaign', 'example');
url.searchParams.set('userEmailAddress', 'example');
url.searchParams.set('calculateCreditValue', 'true');
url.searchParams.set('includeRefundedAndOptout', 'true');
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/zoomconnect.com/1/api/rest/v1/account/statistics")
q := baseURL.Query()
q.Set("to", "2024-12-31")
q.Set("from", "2024-01-01")
q.Set("campaign", "example")
q.Set("userEmailAddress", "example")
q.Set("calculateCreditValue", "true")
q.Set("includeRefundedAndOptout", "true")
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/zoomconnect.com/1/api/rest/v1/account/statistics")
uri.query = URI.encode_www_form({
"to" => "2024-12-31",
"from" => "2024-01-01",
"campaign" => "example",
"userEmailAddress" => "example",
"calculateCreditValue" => "true",
"includeRefundedAndOptout" => "true"
})
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/zoomconnect.com/1/api/rest/v1/account/statistics?" . http_build_query([
"to" => "2024-12-31",
"from" => "2024-01-01",
"campaign" => "example",
"userEmailAddress" => "example",
"calculateCreditValue" => "true",
"includeRefundedAndOptout" => "true"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Find a user for a particular email address
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/zoomconnect.com/1/api/rest/v1/account/user?searchEmail=example"
import requests
params = {
"searchEmail": "example"
}
response = requests.get(
"https://api.apis.guru/v2/specs/zoomconnect.com/1/api/rest/v1/account/user",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/zoomconnect.com/1/api/rest/v1/account/user');
url.searchParams.set('searchEmail', '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/zoomconnect.com/1/api/rest/v1/account/user")
q := baseURL.Query()
q.Set("searchEmail", "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/zoomconnect.com/1/api/rest/v1/account/user")
uri.query = URI.encode_www_form({
"searchEmail" => "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/zoomconnect.com/1/api/rest/v1/account/user?" . http_build_query([
"searchEmail" => "example"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Returns all messages
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/zoomconnect.com/1/api/rest/v1/messages/all?page=1&read=true&type=OUTBOUND&status=SCHEDULED&deleted=true&message=example&campaign=example&pageSize=100&toNumber=example&dataField=example&fromNumber=example&toDateTimeSent=example&fromDateTimeSent=example&repliesToMessageId=example&toDateTimeReceived=example&fromDateTimeReceived=example"
import requests
params = {
"page": "1",
"read": "true",
"type": "OUTBOUND",
"status": "SCHEDULED",
"deleted": "true",
"message": "example",
"campaign": "example",
"pageSize": "100",
"toNumber": "example",
"dataField": "example",
"fromNumber": "example",
"toDateTimeSent": "example",
"fromDateTimeSent": "example",
"repliesToMessageId": "example",
"toDateTimeReceived": "example",
"fromDateTimeReceived": "example"
}
response = requests.get(
"https://api.apis.guru/v2/specs/zoomconnect.com/1/api/rest/v1/messages/all",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/zoomconnect.com/1/api/rest/v1/messages/all');
url.searchParams.set('page', '1');
url.searchParams.set('read', 'true');
url.searchParams.set('type', 'OUTBOUND');
url.searchParams.set('status', 'SCHEDULED');
url.searchParams.set('deleted', 'true');
url.searchParams.set('message', 'example');
url.searchParams.set('campaign', 'example');
url.searchParams.set('pageSize', '100');
url.searchParams.set('toNumber', 'example');
url.searchParams.set('dataField', 'example');
url.searchParams.set('fromNumber', 'example');
url.searchParams.set('toDateTimeSent', 'example');
url.searchParams.set('fromDateTimeSent', 'example');
url.searchParams.set('repliesToMessageId', 'example');
url.searchParams.set('toDateTimeReceived', 'example');
url.searchParams.set('fromDateTimeReceived', '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/zoomconnect.com/1/api/rest/v1/messages/all")
q := baseURL.Query()
q.Set("page", "1")
q.Set("read", "true")
q.Set("type", "OUTBOUND")
q.Set("status", "SCHEDULED")
q.Set("deleted", "true")
q.Set("message", "example")
q.Set("campaign", "example")
q.Set("pageSize", "100")
q.Set("toNumber", "example")
q.Set("dataField", "example")
q.Set("fromNumber", "example")
q.Set("toDateTimeSent", "example")
q.Set("fromDateTimeSent", "example")
q.Set("repliesToMessageId", "example")
q.Set("toDateTimeReceived", "example")
q.Set("fromDateTimeReceived", "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/zoomconnect.com/1/api/rest/v1/messages/all")
uri.query = URI.encode_www_form({
"page" => "1",
"read" => "true",
"type" => "OUTBOUND",
"status" => "SCHEDULED",
"deleted" => "true",
"message" => "example",
"campaign" => "example",
"pageSize" => "100",
"toNumber" => "example",
"dataField" => "example",
"fromNumber" => "example",
"toDateTimeSent" => "example",
"fromDateTimeSent" => "example",
"repliesToMessageId" => "example",
"toDateTimeReceived" => "example",
"fromDateTimeReceived" => "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/zoomconnect.com/1/api/rest/v1/messages/all?" . http_build_query([
"page" => "1",
"read" => "true",
"type" => "OUTBOUND",
"status" => "SCHEDULED",
"deleted" => "true",
"message" => "example",
"campaign" => "example",
"pageSize" => "100",
"toNumber" => "example",
"dataField" => "example",
"fromNumber" => "example",
"toDateTimeSent" => "example",
"fromDateTimeSent" => "example",
"repliesToMessageId" => "example",
"toDateTimeReceived" => "example",
"fromDateTimeReceived" => "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 www.zoomconnect.com?
www.zoomconnect.com 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. www.zoomconnect.com is free to use, making it a low-risk choice to experiment with.
New to APIs? Read our beginner's guide