Applications (IOS/Android)

List all applications

Get a paginated, optionally filtered/sorted list of all non-banned applications.

get/api/v1/application

Query parameters

orderBy'name' | 'created_at' | 'updated_at'

Field to sort by

orderDirection'asc' | 'desc'

'asc' or 'desc'

store'IOS' | 'ANDROID' | 'PWA' | 'APK'

Filter by store: IOS, ANDROID, or omit for all

search_by_namestring nullable
pageinteger
sizeinteger

Response

Successful Response

totalinteger required
pageinteger required
sizeinteger required
pagesinteger required

Example response

{
  "items": [
    {
      "applicationType": "NATIVE",
      "createdAt": "2023-10-01T12:00:00Z",
      "description": "An example application for demonstration purposes.",
      "downloads": 1000000,
      "geoList": [
        "US",
        "UK",
        "CA"
      ],
      "icon": "https://example.com/icon.png",
      "id": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
      "name": "Example App",
      "rating": 4.5,
      "screenshots": [
        "https://example.com/screenshot1.png"
      ],
      "size": 2048000,
      "storeUrl": "https://play.google.com/store/apps/details?id=com.example.app",
      "updatedAt": "2023-10-02T12:00:00Z",
      "version": "1.0.0"
    }
  ]
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.