# 7.2 Project Detail

```
GET /fundraising/projects/{project_id}
```

**Path Parameters**

| Parameter   | Type   | Required | Description |
| ----------- | ------ | -------- | ----------- |
| project\_id | Number | No       | Project ID  |

**Response Example**

```json
{
    "project_id": "1848207131284344834",
    "twitter_username": "defichain",
    "create_time": 1739585768141,
    "update_time": 1739585768141,
    "fundraising_rounds": [
        {
            "round_id": "1858996283520290818",
            "round": "Series A",
            "amount": "15,000,000 USD",
            "valuation": null,
            "date": 1731974400000,
            "investors": [
                {
                    "investor_id": "1844240890553389058",
                    "name": "Paradigm",
                    "logo_url": "https://...",
                    "type": 2,
                    "is_lead_investor": true
                }
            ]
        }
    ],
    "investors": [...],
    "team": [...],
    "investment_stats": {
        "total_rounds": 0,
        "rounds_last_year": 0,
        "lead_invest_count": 0,
        "last_invest_date": null,
        "portfolio_count": 0
    },
    "portfolio": [
        {
            "project_id": "1844233596960722945",
            "project_name": "Monero",
            "logo_url": "https://...",
            "ecosystems": ["BitTorrent"],
            "established_date": 1728534528350,
            "funding_status": "1844233596855865345",
            "regions": ["UK"]
        }
    ]
}
```

**Response Fields**

| Field                                                  | Type           | Description                      |
| ------------------------------------------------------ | -------------- | -------------------------------- |
| project\_id                                            | String         | Project ID                       |
| twitter\_username                                      | String         | Project Twitter username         |
| create\_time                                           | Long           | Creation time (timestamp)        |
| update\_time                                           | Long           | Last update time (timestamp)     |
| fundraising\_rounds                                    | Array\[Object] | Fundraising rounds               |
| fundraising\_rounds\[].round\_id                       | String         | Round ID                         |
| fundraising\_rounds\[].round                           | String         | Round name (e.g. Seed, Series A) |
| fundraising\_rounds\[].amount                          | String         | Amount raised                    |
| fundraising\_rounds\[].valuation                       | String         | Valuation; may be null           |
| fundraising\_rounds\[].date                            | Long           | Round date (timestamp)           |
| fundraising\_rounds\[].investors                       | Array\[Object] | Investor list                    |
| fundraising\_rounds\[].investors\[].investor\_id       | String         | Investor ID                      |
| fundraising\_rounds\[].investors\[].name               | String         | Investor name                    |
| fundraising\_rounds\[].investors\[].logo\_url          | String         | Investor logo URL                |
| fundraising\_rounds\[].investors\[].type               | Integer        | Investor type                    |
| fundraising\_rounds\[].investors\[].is\_lead\_investor | Boolean        | Whether lead investor            |
| investors                                              | Array\[Object] | All project investors            |
| team                                                   | Array\[Object] | Team members                     |
| investment\_stats                                      | Object         | Investment statistics            |
| portfolio                                              | Array\[Object] | Portfolio list                   |


---

# 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://sosovalue-1.gitbook.io/sosovalue-api-doc/7.-fundraising/project-detail.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.
