Skip to main content
POST
/
api
/
fdroid
/
apps
/fdroid/apps
curl --request POST \
  --url https://api.anysite.io/api/fdroid/apps \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "package_name": "<string>",
  "timeout": 300,
  "lang": "en"
}
'
[
  {
    "package_name": "<string>",
    "name": "<string>",
    "@type": "FdroidApp",
    "summary": "<string>",
    "description": "<string>",
    "author_name": "<string>",
    "license": "<string>",
    "license_name": "<string>",
    "web_url": "<string>",
    "source_url": "<string>",
    "issue_tracker_url": "<string>",
    "changelog_url": "<string>",
    "translation_url": "<string>",
    "build_metadata_url": "<string>",
    "reproducibility_status_url": "<string>",
    "donate": [],
    "image": "<string>",
    "screenshots": [],
    "suggested_version_code": "<string>",
    "added_at": 123,
    "updated_at": 123,
    "versions": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
package_name
string
required

Android package name, or an F-Droid app URL

Minimum string length: 1
Examples:

"org.fdroid.fdroid"

"com.termux"

"https://f-droid.org/en/packages/org.fdroid.fdroid/"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

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

Locale for localized name, summary and description

Response

Successful Response

package_name
string
required
name
string
required
@type
string
default:FdroidApp
summary
string | null
description
string | null
author_name
string | null
license
string | null
license_name
string | null
web_url
string | null
source_url
string | null
issue_tracker_url
string | null
changelog_url
string | null
translation_url
string | null
build_metadata_url
string | null
reproducibility_status_url
string | null
donate
string[]
image
string | null
screenshots
string[]
suggested_version_code
string | null
added_at
integer | null
updated_at
integer | null
versions
object[]