7.2 Project Detail

GET /fundraising/projects/{project_id}

Path Parameters

Parameter
Type
Required
Description

project_id

Number

No

Project ID

Response Example

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

Last updated