TheAiMart API

Welcome to the official TheAiMart API documentation. The API allows developers to programmatically interact with our app ecosystem, retrieve application metadata, manage releases, and fetch analytics for their portfolio.

Base URL: https://api.theaimart.com/v1
All requests must be made over HTTPS. Plain HTTP requests will be redirected or rejected.

Authentication

TheAiMart API uses API keys to authenticate requests. You can view and manage your API keys in the Developer Dashboard .

Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret API keys in publicly accessible areas such as GitHub, client-side code, and so forth.

HTTP Header
Authorization: Bearer sk_live_...

Endpoints

GET

List Apps

Returns a paginated list of applications available on the platform.

Query Parameters

ParameterDescription
categoryFilter by category slug (e.g., development).
pagePage number (default: 1).
curl -X GET "https://api.theaimart.com/v1/apps?category=development" \ -H "Authorization: Bearer YOUR_API_KEY"