# Projects

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

## List projects

```http
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**

```json
{
  "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

```http
GET /v1/projects/{id}
```

Returns the full intelligence profile for a project.

**Example response**

```json
{
  "data": {
    "id": "prj_xyz789",
    "name": "Project Name",
    "ecosystem": "base",
    "category": "defi",
    "sentiment_score": 0.74,
    "sentiment_trend": "rising",
    "community_size": 18400,
    "creator_mention_count_30d": 92,
    "top_contributors": ["ctr_abc123", "ctr_def456"],
    "narrative_ids": ["nar_001", "nar_002"]
  }
}
```

## 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.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.airaa.xyz/api-reference/projects.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
