For the complete documentation index, see llms.txt. This page is also available as Markdown.

Projects

The Projects API returns intelligence profiles for web3 projects and brands, including sentiment analysis and community metrics.

List projects

GET /v1/projects

Returns a paginated list of projects.

Query parameters

Parameter
Type
Description

ecosystem

string

Filter by blockchain ecosystem (e.g., base, solana, ethereum)

category

string

Project category (e.g., defi, nft, gaming, infra)

limit

integer

Results per page. Default: 20, max: 100

cursor

string

Pagination cursor

Example response

{
  "data": [
    {
      "id": "prj_xyz789",
      "name": "Project Name",
      "ecosystem": "base",
      "category": "defi",
      "sentiment_score": 0.74,
      "community_size": 18400,
      "creator_mention_count_30d": 92,
      "trending": true
    }
  ],
  "next_cursor": "eyJpZCI6..."
}

Get a project

Returns the full intelligence profile for a project.

Example response

Sentiment scores

Sentiment scores range from -1.0 (highly negative) to 1.0 (highly positive), aggregated from creator content mentioning the project across all connected platforms.

Last updated

Was this helpful?