Find an API

Search public APIs with auth details & Postman guides

← All APIs

D7SMS

d7networks · Company

Company No Auth Free & Open messaging

D7 SMS allows you to reach your customers via SMS over D7's own connectivity to global mobile networks. D7 provides reliable and cost-effective SMS services to businesses across all industries and aims to connect all countries and territories via direct connections.

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

GET Balance

Check account balance

https://api.apis.guru/v2/specs/d7networks.com/1.0.2/balance

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/d7networks.com/1.0.2/balance"
import requests
response = requests.get(
    "https://api.apis.guru/v2/specs/d7networks.com/1.0.2/balance",
)
print(response.json())
const url = 'https://api.apis.guru/v2/specs/d7networks.com/1.0.2/balance';

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
)

func main() {
	targetURL := "https://api.apis.guru/v2/specs/d7networks.com/1.0.2/balance"
	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/d7networks.com/1.0.2/balance")

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/d7networks.com/1.0.2/balance";
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
POST SendSMS

Send SMS to recipients using D7 SMS Gateway

https://api.apis.guru/v2/specs/d7networks.com/1.0.2/send

Hover any highlighted part to learn what it does

Headers — extra info sent with the request
Accept example
Content-Type example
curl -X POST "https://api.apis.guru/v2/specs/d7networks.com/1.0.2/send" \
  -H "Accept: example" \
  -H "Content-Type: example"
import requests
headers = {
    "Accept": "example",
    "Content-Type": "example"
}
response = requests.post(
    "https://api.apis.guru/v2/specs/d7networks.com/1.0.2/send",
    headers=headers,
)
print(response.json())
const url = 'https://api.apis.guru/v2/specs/d7networks.com/1.0.2/send';

const response = await fetch(url, {
  method: 'POST',
  headers: {
    'Accept': 'example',
    'Content-Type': 'example'
  },
}); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
)

func main() {
	targetURL := "https://api.apis.guru/v2/specs/d7networks.com/1.0.2/send"
	req, _ := http.NewRequest("POST", targetURL, nil)
	req.Header.Set("Accept", "example")
	req.Header.Set("Content-Type", "example")

	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/d7networks.com/1.0.2/send")

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Post.new(uri)
req["Accept"] = "example"
req["Content-Type"] = "example"

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/d7networks.com/1.0.2/send";
$opts = ["http" => [
    "method" => "POST",
    "header" => implode("\r\n", [
        "Accept: example",
        "Content-Type: example"
    ]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
POST Bulk SMS

Send Bulk SMS to multiple recipients using D7 SMS Gateway

https://api.apis.guru/v2/specs/d7networks.com/1.0.2/sendbatch

Hover any highlighted part to learn what it does

Headers — extra info sent with the request
Accept example
Content-Type example
curl -X POST "https://api.apis.guru/v2/specs/d7networks.com/1.0.2/sendbatch" \
  -H "Accept: example" \
  -H "Content-Type: example"
import requests
headers = {
    "Accept": "example",
    "Content-Type": "example"
}
response = requests.post(
    "https://api.apis.guru/v2/specs/d7networks.com/1.0.2/sendbatch",
    headers=headers,
)
print(response.json())
const url = 'https://api.apis.guru/v2/specs/d7networks.com/1.0.2/sendbatch';

const response = await fetch(url, {
  method: 'POST',
  headers: {
    'Accept': 'example',
    'Content-Type': 'example'
  },
}); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
)

func main() {
	targetURL := "https://api.apis.guru/v2/specs/d7networks.com/1.0.2/sendbatch"
	req, _ := http.NewRequest("POST", targetURL, nil)
	req.Header.Set("Accept", "example")
	req.Header.Set("Content-Type", "example")

	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/d7networks.com/1.0.2/sendbatch")

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Post.new(uri)
req["Accept"] = "example"
req["Content-Type"] = "example"

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/d7networks.com/1.0.2/sendbatch";
$opts = ["http" => [
    "method" => "POST",
    "header" => implode("\r\n", [
        "Accept: example",
        "Content-Type: example"
    ]),
]];
$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 D7SMS?

D7SMS 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. D7SMS 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 ↗