Find an API

Search public APIs with auth details & Postman guides

← All APIs

Sakari

sakari · Company

Company No Auth Free & Open messaging

# Introduction Welcome to the documentation for the Sakari Messaging REST API. Sakari provides an advanced platform to drive large scale customized SMS communication REST is a web-service protocol that lends itself to rapid development by using everyday HTTP and JSON technology. To find out more about our product offering, please visit [https://sakari.io](https://sakari.io). # Quickstart For your convenience we have created a quickstart guide to get you up and running in 5 minutes. [htt

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

GET Fetch campaigns

Fetch campaigns

https://api.apis.guru/v2/specs/sakari.io/1.0.1/v1/accounts/{accountId}/campaigns?name=test&limit=10&offset=0

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/sakari.io/1.0.1/v1/accounts/{accountId}/campaigns?name=test&limit=10&offset=0"
import requests
params = {
    "name": "test",
    "limit": "10",
    "offset": "0"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/sakari.io/1.0.1/v1/accounts/{accountId}/campaigns",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/sakari.io/1.0.1/v1/accounts/{accountId}/campaigns');
url.searchParams.set('name', 'test');
url.searchParams.set('limit', '10');
url.searchParams.set('offset', '0');

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/sakari.io/1.0.1/v1/accounts/{accountId}/campaigns")
	q := baseURL.Query()
	q.Set("name", "test")
	q.Set("limit", "10")
	q.Set("offset", "0")
	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/sakari.io/1.0.1/v1/accounts/{accountId}/campaigns")
uri.query = URI.encode_www_form({
  "name" => "test",
  "limit" => "10",
  "offset" => "0"
})

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/sakari.io/1.0.1/v1/accounts/{accountId}/campaigns?" . http_build_query([
    "name" => "test",
    "limit" => "10",
    "offset" => "0"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET Fetch contacts

Fetch contacts

https://api.apis.guru/v2/specs/sakari.io/1.0.1/v1/accounts/{accountId}/contacts?tags=example&email=[email protected]&limit=10&mobile=example&offset=0&lastName=example&firstName=example

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/sakari.io/1.0.1/v1/accounts/{accountId}/contacts?tags=example&email=test%40example.com&limit=10&mobile=example&offset=0&lastName=example&firstName=example"
import requests
params = {
    "tags": "example",
    "email": "[email protected]",
    "limit": "10",
    "mobile": "example",
    "offset": "0",
    "lastName": "example",
    "firstName": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/sakari.io/1.0.1/v1/accounts/{accountId}/contacts",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/sakari.io/1.0.1/v1/accounts/{accountId}/contacts');
url.searchParams.set('tags', 'example');
url.searchParams.set('email', '[email protected]');
url.searchParams.set('limit', '10');
url.searchParams.set('mobile', 'example');
url.searchParams.set('offset', '0');
url.searchParams.set('lastName', 'example');
url.searchParams.set('firstName', '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/sakari.io/1.0.1/v1/accounts/{accountId}/contacts")
	q := baseURL.Query()
	q.Set("tags", "example")
	q.Set("email", "[email protected]")
	q.Set("limit", "10")
	q.Set("mobile", "example")
	q.Set("offset", "0")
	q.Set("lastName", "example")
	q.Set("firstName", "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/sakari.io/1.0.1/v1/accounts/{accountId}/contacts")
uri.query = URI.encode_www_form({
  "tags" => "example",
  "email" => "[email protected]",
  "limit" => "10",
  "mobile" => "example",
  "offset" => "0",
  "lastName" => "example",
  "firstName" => "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/sakari.io/1.0.1/v1/accounts/{accountId}/contacts?" . http_build_query([
    "tags" => "example",
    "email" => "[email protected]",
    "limit" => "10",
    "mobile" => "example",
    "offset" => "0",
    "lastName" => "example",
    "firstName" => "example"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET Fetch conversations

Fetch conversations

https://api.apis.guru/v2/specs/sakari.io/1.0.1/v1/accounts/{accountId}/conversations?limit=10&offset=0

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/sakari.io/1.0.1/v1/accounts/{accountId}/conversations?limit=10&offset=0"
import requests
params = {
    "limit": "10",
    "offset": "0"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/sakari.io/1.0.1/v1/accounts/{accountId}/conversations",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/sakari.io/1.0.1/v1/accounts/{accountId}/conversations');
url.searchParams.set('limit', '10');
url.searchParams.set('offset', '0');

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/sakari.io/1.0.1/v1/accounts/{accountId}/conversations")
	q := baseURL.Query()
	q.Set("limit", "10")
	q.Set("offset", "0")
	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/sakari.io/1.0.1/v1/accounts/{accountId}/conversations")
uri.query = URI.encode_www_form({
  "limit" => "10",
  "offset" => "0"
})

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/sakari.io/1.0.1/v1/accounts/{accountId}/conversations?" . http_build_query([
    "limit" => "10",
    "offset" => "0"
]);
$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

Get Postman ↗
  1. See official documentation for authentication and setup.

What can you build with Sakari?

Sakari 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. Sakari is free to use, making it a low-risk choice to experiment with.

New to APIs? Read our beginner's guide · Learn about API keys · What is REST?

Open documentation ↗