Skip to main content
POST
/
api
/
aptoide
/
apps
/
search
/aptoide/apps/search
curl --request POST \
  --url https://api.anysite.io/api/aptoide/apps/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "query": "<string>",
  "count": 2,
  "timeout": 300,
  "mature": false,
  "store_name": "<string>"
}
'
import requests

url = "https://api.anysite.io/api/aptoide/apps/search"

payload = {
"query": "<string>",
"count": 2,
"timeout": 300,
"mature": False,
"store_name": "<string>"
}
headers = {
"access-token": "<api-key>",
"Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
const options = {
method: 'POST',
headers: {'access-token': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
query: '<string>',
count: 2,
timeout: 300,
mature: false,
store_name: '<string>'
})
};

fetch('https://api.anysite.io/api/aptoide/apps/search', 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://api.anysite.io/api/aptoide/apps/search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'query' => '<string>',
'count' => 2,
'timeout' => 300,
'mature' => false,
'store_name' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"access-token: <api-key>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

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

func main() {

url := "https://api.anysite.io/api/aptoide/apps/search"

payload := strings.NewReader("{\n \"query\": \"<string>\",\n \"count\": 2,\n \"timeout\": 300,\n \"mature\": false,\n \"store_name\": \"<string>\"\n}")

req, _ := http.NewRequest("POST", url, payload)

req.Header.Add("access-token", "<api-key>")
req.Header.Add("Content-Type", "application/json")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.post("https://api.anysite.io/api/aptoide/apps/search")
.header("access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"query\": \"<string>\",\n \"count\": 2,\n \"timeout\": 300,\n \"mature\": false,\n \"store_name\": \"<string>\"\n}")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.anysite.io/api/aptoide/apps/search")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["access-token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"query\": \"<string>\",\n \"count\": 2,\n \"timeout\": 300,\n \"mature\": false,\n \"store_name\": \"<string>\"\n}"

response = http.request(request)
puts response.read_body
[
  {
    "id": 123,
    "name": "<string>",
    "package": "<string>",
    "@type": "AptoideApp",
    "alias": "<string>",
    "size": 123,
    "image": "<string>",
    "cover": "<string>",
    "added_at": "<string>",
    "modified_at": "<string>",
    "updated_at": "<string>",
    "summary": "<string>",
    "whats_new": "<string>",
    "keywords": [],
    "screenshots": [],
    "videos": [],
    "web_url": "<string>",
    "mobile_url": "<string>",
    "download_count": 123,
    "play_download_count": 123,
    "age": {
      "@type": "AptoideAppAge",
      "name": "<string>",
      "rating": "<string>",
      "pegi": "<string>"
    },
    "developer": {
      "@type": "AptoideDeveloper",
      "id": 123,
      "name": "<string>",
      "website": "<string>",
      "email": "<string>",
      "privacy_url": "<string>"
    },
    "store": {
      "name": "<string>",
      "@type": "AptoideStore",
      "id": 123,
      "image": "<string>",
      "badge": "<string>",
      "apps_count": 123,
      "subscriber_count": 123,
      "download_count": 123,
      "review_count": 123,
      "web_url": "<string>"
    },
    "file": {
      "@type": "AptoideAppFile",
      "version_name": "<string>",
      "version_code": 123,
      "md5": "<string>",
      "size": 123,
      "sha1": "<string>",
      "signature_owner": "<string>",
      "min_sdk": 123,
      "screen": "<string>",
      "gles": 123,
      "abis": [],
      "densities": [],
      "malware_rank": "<string>",
      "download_url": "<string>",
      "download_url_alt": "<string>",
      "added_at": "<string>",
      "tags": [],
      "used_features": [],
      "used_permissions": []
    },
    "rating": {
      "@type": "AptoideAppRating",
      "avg": 123,
      "count": 0,
      "votes": []
    },
    "play_rating": {
      "@type": "AptoideAppRating",
      "avg": 123,
      "count": 0,
      "votes": []
    }
  }
]
{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
query
string
required
Minimum string length: 1
count
integer
required
Required range: x >= 1
timeout
integer
default:300
Required range: 20 <= x <= 1500
mature
boolean
default:false
store_name
string | null

Response

Successful Response

id
integer
required
name
string
required
package
string
required
@type
string
default:AptoideApp
alias
string | null
size
integer | null
image
string | null
cover
string | null
added_at
string | null
modified_at
string | null
updated_at
string | null
summary
string | null
whats_new
string | null
keywords
string[]
screenshots
string[]
videos
string[]
web_url
string | null
mobile_url
string | null
download_count
integer | null
play_download_count
integer | null
age
object | null
developer
object | null
store
object | null
file
object | null
rating
object | null
play_rating
object | null