Skip to main content
POST
/
api
/
fdroid
/
apps
/
search
/fdroid/apps/search
curl --request POST \
  --url https://api.anysite.io/api/fdroid/apps/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "keyword": "<string>",
  "count": 2,
  "timeout": 300,
  "lang": "en"
}
'
[
  {
    "package_name": "<string>",
    "name": "<string>",
    "profile_url": "<string>",
    "@type": "FdroidSearchApp",
    "summary": "<string>",
    "license": "<string>",
    "image": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
keyword
string
required

Search keyword

Minimum string length: 1
Examples:

"browser"

"podcast"

count
integer
required

Max number of results

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
lang
string
default:en

Locale for result names and summaries

Response

Successful Response

package_name
string
required
name
string
required
profile_url
string
required
@type
string
default:FdroidSearchApp
summary
string | null
license
string | null
image
string | null