For Users
- 100% free. Developers list for free, so you never pay an app-store mark-up.
- Security-reviewed. Every app audit and security scan before publication.
- Graphs + reviews. Each app has a graph visual and customer reviews.

The app store for the web
Interactive documentation for the FolioNames REST API. Browse endpoints, view examples, and test requests live.
Authenticated endpoints require either a Bearer token or an X-FN-Api-Key header. Generate API keys from your Developer Settings.
Authorization: Bearer fn_...X-FN-Api-Key: fn_.../api/v1/appsList published apps with filtering, sorting, and pagination.
| Name | Type | In | Required | Description |
|---|---|---|---|---|
| q | string | query | Optional | Search term for name, tagline, or description. |
| category | string | query | Optional | Category slug to filter by. |
| sort | string | query | Optional | Sort field: rating | newest | popular | trending (default: trending). |
| page | number | query | Optional | Page number (default: 1). |
| perPage | number | query | Optional | Items per page, max 50 (default: 24). |
curl -X GET "https://folionames.com/api/v1/apps" \
-H "Content-Type: application/json"Base URL: https://folionames.com/api/v1 — All responses return { success: boolean, data?: ..., error?: string }