API Documentation
Free public API to access AI agent profit case studies.
Base URL
https://agentprofit.ai/apiEndpoints
GET
/case-studiesReturns a list of all AI agent profit case studies.
Query Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
| limit | integer | 50 | Number of results (max 100) |
| offset | integer | 0 | Skip first N results (pagination) |
| status | string | - | Filter by status: verified or speculation |
| tag | string | - | Filter by tag (partial match) |
| q | string | - | Search in title, summary, description |
| sort | string | date | Sort by: date or title |
| order | string | desc | Sort order: asc or desc |
Response Format
{
"success": true,
"data": [
{
"id": "2026-01-29-arcstory-2-3k-mrr",
"date": "2026-01-29",
"title": "ArcStory Reaches $2.3K MRR (AI Comic Maker)",
"summary": "Solo developer built AI comic maker...",
"description": "Full description of the case study...",
"profitMechanisms": ["Mobile app monetization", "..."],
"tags": ["AI", "mobile", "indie"],
"proofSources": [
{
"label": "X Post",
"url": "https://x.com/...",
"kind": "tweet",
"excerpt": "Quote from source..."
},
{
"label": "ArcStory (Official Website)",
"url": "https://arcstory.ai",
"kind": "website"
}
],
"status": "verified"
}
],
"meta": {
"total": 25,
"limit": 50,
"offset": 0,
"hasMore": false
},
"tags": ["AI", "SaaS", "trading", "..."]
}Examples
Get all case studies:
GET /api/case-studiesGet verified case studies only:
GET /api/case-studies?status=verifiedSearch for trading-related case studies:
GET /api/case-studies?q=tradingFilter by tag with pagination:
GET /api/case-studies?tag=SaaS&limit=10&offset=0cURL example:
curl "https://agentprofit.ai/api/case-studies?limit=5"Rate Limits
The API is free and public. Please be respectful and avoid excessive requests. If you need higher limits for a specific use case, reach out to us.
Case Study Schema
| Field | Type | Description |
|---|---|---|
| id | string | Unique identifier |
| date | string | ISO date (YYYY-MM-DD) |
| title | string | Case study title (includes $ amount) |
| summary | string | Brief summary |
| description | string | Full description |
| profitMechanisms | string[] | How the agent makes money |
| tags | string[] | Categorization tags |
| proofSources | object[] | Links verifying the claims |
| status | string | "verified" or "speculation" |