GET/api/v1/oppurtunity/fundraising| Name | Type | Required | Description |
|---|---|---|---|
| x-api-key | String | Yes | API key provided by the Networked Team. |
| spaceId | String | No | Required only when fetching for a space. Defaults to community. |
| Name | Type | Required | Description |
|---|---|---|---|
| start | Number | Yes | The offset index to start fetching records. |
| count | Number | Yes | The number of records to fetch. |
{
"data": {
"count": 1,
"start": 0,
"nextStart": false,
"contents": [
{
"user": {
"id": "6787893423126f0012a92ed6",
"name": "Spencer Johnson Spencer",
"image": "https://ntwc-us-east-2-qa-eks-s3-files-storage.s3.us-east-2.amazonaws.com/user-6787893423126f0012a92ed6/file_1741258763688_image (25).png",
"title": " Software Development Test Engineer WBC Community Test Engineer",
"primaryCompany": "test",
"location": "",
"industries": ["Animation"]
},
"fundingDetails": {
"id": "682fc8f10465d1001250c486",
"fundraisingType": {
"id": "5349b4ddd2781d06f0000001",
"name": "Association",
"description": "An association is a group or organization to which you may be united for a common interest or goal"
},
"companyName": "xcxzc",
"companyAbout": "<p class='preserveHtml' class='preserveHtml' class='preserveHtml' class='preserveHtml' class='preserveHtml' style=\"\">cxzc</p>",
"companyAboutRichText": "[{\"type\":\"paragraph\",\"children\":[{\"text\":\"cxzc\"}]}]",
"theAsk": "<p class='preserveHtml' class='preserveHtml' class='preserveHtml' class='preserveHtml' class='preserveHtml' style=\"\">czxc</p>",
"theAskRichText": "[{\"type\":\"paragraph\",\"children\":[{\"text\":\"czxc\"}]}]",
"media": [],
"timeStamp": 1747962097652,
"isSpace": false,
"community": "67959032bc6bea0012fdc671"
}
}
]
},
"error": false,
"message": "Operation completed successfully"
}
interface FundraisingResponse {
data: {
count: number;
start: number;
nextStart: boolean;
contents: {
user: {
id: string;
name: string;
image: string;
title: string;
primaryCompany: string;
location: string;
industries: string[];
};
fundingDetails: {
id: string;
fundraisingType: {
id: string;
name: string;
description: string;
};
companyName: string;
companyAbout: string;
companyAboutRichText: string;
theAsk: string;
theAskRichText: string;
media: any[];
timeStamp: number;
isSpace: boolean;
community: string;
};
}[];
};
error: boolean;
message: string;
}
| Name | Type | Description |
|---|---|---|
| data.count | Number | Total number of results returned. |
| data.start | Number | Starting index of the results. |
| data.nextStart | Boolean | Indicates if more results are available. |
| data.contents | Array | Array of fundraising opportunities. |
| user | Object | Information about the user. |
| user.id | String | Unique identifier of the user. |
| user.name | String | Full name of the user. |
| user.image | String | URL to the user's profile image. |
| user.title | String | User's professional title. |
| user.primaryCompany | String | Name of the user's primary company. |
| user.location | String | User's location. |
| user.industries | String[] | List of industries the user is involved in. |
| fundingDetails | Object | Details about the fundraising opportunity. |
| fundingDetails.id | String | Unique identifier for the fundraising record. |
| fundraisingType | Object | Information about the type of fundraising. |
| fundraisingType.id | String | Unique ID of the fundraising type. |
| fundraisingType.name | String | Name of the fundraising type. |
| fundraisingType.description | String | Description of the fundraising type. |
| companyName | String | Name of the company raising funds. |
| companyAbout | String | HTML content describing the company. |
| companyAboutRichText | String | JSON-rich text version of company description. |
| theAsk | String | HTML content of the fundraising ask. |
| theAskRichText | String | JSON-rich text version of the ask. |
| media | Array | Media files associated with the opportunity. |
| timeStamp | Number | Timestamp of when the opportunity was created. |
| isSpace | Boolean | Indicates if this is a space listing. |
| community | String | ID of the community this opportunity is associated with. |
start and count helps retrieve large datasets efficiently.curl --location 'https://backend.networked.co/api/v1/oppurtunity/fundraising?start=0&count=10' \
--header 'x-api-key: <your-api-key>' \
--header 'spaceId: 1750824472000'{
"data": {
"count": 1,
"start": 0,
"nextStart": false,
"contents": [
{
"user": {
"id": "6787893423126f0012a92ed6",
"name": "Spencer Johnson Spencer",
"image": "https://ntwc-us-east-2-qa-eks-s3-files-storage.s3.us-east-2.amazonaws.com/user-6787893423126f0012a92ed6/file_1741258763688_image%20%2825%29.png",
"title": " Software Development Test Engineer WBC Community Test Engineer",
"primaryCompany": "test",
"location": "",
"industries": [
"Animation"
]
},
"fundingDetails": {
"id": "682fc8f10465d1001250c486",
"fundraisingType": {
"id": "5349b4ddd2781d06f0000001",
"name": "Association",
"description": "An association is a group or organization to which you may be united for a common interest or goal"
},
"companyName": "xcxzc",
"companyAbout": "<p style=\"\">cxzc</p>",
"companyAboutRichText": "[{\"type\":\"paragraph\",\"children\":[{\"text\":\"cxzc\"}]}]",
"theAsk": "<p style=\"\">czxc</p>",
"theAskRichText": "[{\"type\":\"paragraph\",\"children\":[{\"text\":\"czxc\"}]}]",
"media": [],
"timeStamp": 1747962097652,
"isSpace": false,
"community": "67959032bc6bea0012fdc671"
}
}
]
},
"error": false,
"message": "Operation completed successfully"
}