v4

latestOpenAPI 3.1.02026-08-01131465.2 KB
Projects

List projects

Returns a cursor-paginated list of public project profiles. Pass the meta.nextCursor from a response as the cursor of the next request to page forward.

get/api/public/v1/projects

Query parameters

cursorstring

Opaque cursor marking where the previous page ended. Omit it to fetch the first page; pass the meta.nextCursor from a response verbatim to fetch the next. A null meta.nextCursor means there are no more pages. Treat the value as opaque — its format varies per endpoint.

Opaque cursor marking where the previous page ended. Omit it to fetch the first page; pass the meta.nextCursor from a response verbatim to fetch the next. A null meta.nextCursor means there are no more pages. Treat the value as opaque — its format varies per endpoint.

limitinteger nullable

Maximum number of items per page. Defaults to 20; values are clamped to 1–100.

Maximum number of items per page. Defaults to 20; values are clamped to 1–100.

Response

A page of projects.

Example response

{
  "data": [
    {
      "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"
    }
  ],
  "meta": {
    "total": 12,
    "limit": 20
  }
}