Get information about your Converso Whatsapp Api
curl --request GET \
--url https://whatsapp.api.conversoempire.world/import requests
url = "https://whatsapp.api.conversoempire.world/"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://whatsapp.api.conversoempire.world/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://whatsapp.api.conversoempire.world/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://whatsapp.api.conversoempire.world/"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://whatsapp.api.conversoempire.world/")
.asString();require 'uri'
require 'net/http'
url = URI("https://whatsapp.api.conversoempire.world/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"status": 200,
"message": "Welcome to the Converso WhatsApp API, it is working!",
"version": "2.0.0",
"whatsappVersion": "2.3XXX.xxx"
}Start
Get Information
Get information about your Converso Whatsapp Api
GET
/
Get information about your Converso Whatsapp Api
curl --request GET \
--url https://whatsapp.api.conversoempire.world/import requests
url = "https://whatsapp.api.conversoempire.world/"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://whatsapp.api.conversoempire.world/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://whatsapp.api.conversoempire.world/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://whatsapp.api.conversoempire.world/"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://whatsapp.api.conversoempire.world/")
.asString();require 'uri'
require 'net/http'
url = URI("https://whatsapp.api.conversoempire.world/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"status": 200,
"message": "Welcome to the Converso WhatsApp API, it is working!",
"version": "2.0.0",
"whatsappVersion": "2.3XXX.xxx"
}Response
200 - application/json
Ok
The HTTP status of the response
Descriptive message about the current state of the API
The current version of the API
URL to the API's Swagger documentation
URL to the API manager
URL to the detailed API documentation
⌘I
