Manifund makes all of our data public, for developers and LLMs alike. Our endpoints are open and require no authentication.
Need help, or want to show off something cool? Find us on Discord!
Return the 100 most recent projects. To get older projects, paginate with the `before` parameter, eg from the `created_at` of the 100th project: `https://manifund.org/api/v0/projects?before=2025-01-24T19:16:45.757Z`
| Name | Type | Required | Description |
|---|---|---|---|
| before | ISO 8601 timestamp | No | Fetch projects before this time |
[
{
title: string,
id: string,
created_at: string,
creator: string,
// URL of the project is https://manifund.org/projects/{slug}
slug: string,
blurb: string,
// Markdown description of the project
description: string,
stage: string,
funding_goal: number,
min_funding: number,
type: string,
profiles: {
username: string,
full_name: string
},
txns: [],
bids: [],
causes: [
{
title: string,
slug: string
}
]
}
]curl https://manifund.org/api/v0/projects
List comments
GETReturn the 100 most recent comments. To get older comments, paginate with the `before` parameter, eg from the `created_at` of the 100th comment: `https://manifund.org/api/v0/comments?before=2025-01-24T19:16:45.757Z`
Query Parameters
Response