v4

latestOpenAPI 3.1.02026-08-01131465.2 KB
Projects

Get a project

Returns a project profile and its current stats. If your API key is associated with the project, the response includes additional owner-only stats.

get/api/public/v1/projects/{slug}

Path parameters

slugstring required

URL-safe identifier of the project.

Example:yurts-by-nurt

URL-safe identifier of the project.

Response

The project and its stats.

defaultMaxSpendUsdcstring

Owner-only. Default max autobuy spend in USDC applied to every user on this project, overriding the global default. Present only when the requesting API key owns the project.

maxSpendOverridesobject[]

Owner-only. Per-account max autobuy spend overrides. Each entry pairs a USDC limit with the accounts it applies to, matched by FID, address, or X username. Present only when the requesting API key owns the project.

defaultMinSpendUsdcstring

Owner-only. Minimum autobuy spend in USDC required from every user on this project, overriding the global floor. Present only when the requesting API key owns the project.

launchConfigobject

Owner-only. The launchpad this project deploys on and its pool config, as { platform, config }. For platform: "clanker" the config is the Clanker V4 deployment config (token admin, pool, fees); for platform: "bankr" it is the token symbol and the percent of supply vaulted. Present only when the requesting API key owns the project.

Example response

{
  "identity": {
    "slug": "yurts-by-nurt",
    "displayName": "Yurts By Nurt",
    "fid": 3324275,
    "farcasterUsername": "nurt"
  },
  "content": {
    "websiteUrl": "https://thefirm.biz/autoboy",
    "teamMembers": [
      {
        "name": "Nurt Baglard",
        "pfpUrl": "https://thefirm.biz/profiles/headshots/headshot-nurt.png",
        "followerCount": 1,
        "roles": [
          {
            "projectName": "Yurts By Nurt",
            "title": "Spokesperson"
          }
        ],
        "farcasterUrl": "https://farcaster.xyz/nurt"
      }
    ]
  },
  "expectedLaunch": {
    "value": "2026-07-01T15:00:00.000Z"
  },
  "defaultMaxSpendUsdc": "500",
  "defaultMinSpendUsdc": "50",
  "stats": {
    "buyerCount": 482,
    "launch": {
      "tokenAddress": "0x1234567890123456789012345678901234567890",
      "chain": "base",
      "launchedAt": "2026-05-12T18:30:00.000Z"
    },
    "simulatedMaxFdvUsdc": "1250000",
    "startingMcapUsdc": "50000",
    "totalDepositedUsdc": "125000",
    "totalBuysUsdc": "98000",
    "averageBuyUsdc": "203.32"
  }
}