API Version 1.0

FasxHub Public API

Integrate our massive app store data into your own platforms securely and seamlessly using our RESTful API.

Introduction

The FasxHub API allows developers to programmatically fetch application data, search the store, and retrieve categories. The API is completely free, does not require an API key for GET requests, and returns all responses in standard JSON format.

Base Endpoint URL:
https://fasxhub.sksoftdev.com/api.php

Get Latest Apps

Retrieve a list of the most recently published and approved applications on the store.

GET https://fasxhub.sksoftdev.com/api.php?action=latest
ParameterTypeRequiredDescription
limit Integer No Number of apps to return (Default: 10, Max: 50).
Example Response:
{ "status": "success", "endpoint": "latest", "count": 1, "data": [ { "id": "15", "app_name": "Free Fire MAX", "package_name": "com.dts.freefiremax", "developer": "Garena International I", "version": "2.103.1", "category": "Action", "downloads": "1500000", "icon_url": "https://fasxhub.sksoftdev.com/uploads/icons/icon_123.png" } ] }

Get App Details

Fetch full information about a specific app, including full description, requirements, screenshots, and the direct store download link.

GET https://fasxhub.sksoftdev.com/api.php?action=details&id={app_id}
ParameterTypeRequiredDescription
id Integer Yes The unique ID of the application.

Search Applications

Search for applications by their name or package name.

GET https://fasxhub.sksoftdev.com/api.php?action=search&q={query}
ParameterTypeRequiredDescription
q String Yes The search keyword (e.g., "messenger" or "com.facebook").

Categories & Category Apps

1. Get All Categories List

GET https://fasxhub.sksoftdev.com/api.php?action=categories

2. Get Apps by Category Name

GET https://fasxhub.sksoftdev.com/api.php?action=category_apps&category={name}
ParameterTypeRequiredDescription
category String Yes The exact name of the category (e.g., "Action").
limit Integer No Number of apps to return (Default: 20).