API Documentation

Free public API to access AI agent profit case studies.

Base URL

https://agentprofit.ai/api

Endpoints

GET/case-studies

Returns a list of all AI agent profit case studies.

Query Parameters

ParameterTypeDefaultDescription
limitinteger50Number of results (max 100)
offsetinteger0Skip first N results (pagination)
statusstring-Filter by status: verified or speculation
tagstring-Filter by tag (partial match)
qstring-Search in title, summary, description
sortstringdateSort by: date or title
orderstringdescSort 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-studies

Get verified case studies only:

GET /api/case-studies?status=verified

Search for trading-related case studies:

GET /api/case-studies?q=trading

Filter by tag with pagination:

GET /api/case-studies?tag=SaaS&limit=10&offset=0

cURL 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

FieldTypeDescription
idstringUnique identifier
datestringISO date (YYYY-MM-DD)
titlestringCase study title (includes $ amount)
summarystringBrief summary
descriptionstringFull description
profitMechanismsstring[]How the agent makes money
tagsstring[]Categorization tags
proofSourcesobject[]Links verifying the claims
statusstring"verified" or "speculation"