+(923) 111 88 4444
TecniForge, 79/5-L, Sahiwal 57000
ahmad@tecniforge.com

WhatsApp – Get Sent Chats

WhatsApp – Get Sent Chats

Get Sent Chats. Requires “get_wa_sent” API permission.GET https://androidapi.net/api/get/wa.sent

Parameter #

FieldTypeDescription
secretStringThe API secret you copied from (Tools -> API Keys) page
limit (optional)NumberLimit the number of results per page.Default value: 10
page (optional)NumberPagination of results.Default value: 1

Success Response Format #

FieldTypeDescription
statusNumberList of Codes
200 = Success
messageStringResponse message
dataArrayArray of data

Error Response Format #

NameTypeDescription
statusNumberList of Codes
400 = Invalid parameters
401 = Invalid API secret
403 = Access denied
500 = Something went wrong
messageStringResponse message
dataArrayArray of data

PHP Sample #

<?php

  $apiSecret = "API_SECRET"; // your API secret from (Tools -> API Keys) page

  $cURL = curl_init();
  curl_setopt($cURL, CURLOPT_URL, "https://androidapi.net/api/get/wa.sent?secret={$apiSecret}");
  curl_setopt($cURL, CURLOPT_RETURNTRANSFER, true);
  $response = curl_exec($cURL);
  curl_close($cURL);

  $result = json_decode($response, true);

  // do something with response
  print_r($result);

Python Sample #

import requests

# your API secret from (Tools -> API Keys) page
apiSecret = "API_SECRET"

r = requests.get(url = "https://androidapi.net/api/get/wa.sent", params = {
    "secret": apiSecret
})
  
# do something with response object
result = r.json()

Successful Response #

{
  "status": 200,
  "message": "Sent WhatsApp Chats",
  "data": [
       {
           "id": 1,
           "account": "+639760713666",
           "status": "sent",
           "api": true,
           "recipient": "+639206150513",
           "message": "Hello World!",
           "attachment": false,
           "created": 1645129261
       },
       {
           "id": 2,
           "account": "+639760713666",
           "status": "sent",
           "api": false,
           "recipient": "+639206150513",
           "message": "Hello World!",
           "attachment": false,
           "created": 1645129261
       },
       {
           "id": 3,
           "account": "+639760713666",
           "status": "failed",
           "api": true,
           "recipient": "+639206150513",
           "message": "Hello World!",
           "attachment": "https://androidapi.net/uploads/whatsapp/c4ca4238a0b923820dcc509a6f75849b_c4ca4238a0b923820dcc509a6f75849b6352420c0654f1.46673324.pdf",
           "created": 1645129720
       }
   ]
}

Error Response #

{
  "status": 400,
  "message": "Invalid Parameters!",
  "data": false
}

Leave A Comment