Available Campaigns
Endpoint
GET /crowdfunding/campaigns
https://api.growforme.com/crowdfunding/campaignsAuthorization
Requires an API key in the X-API-Key header.
Supported Languages
- English
Responses
- 200 OK: Returns a list of campaigns.
- 403 Forbidden: Invalid API key.
- 500 Internal Server Error: Unexpected error.
Header Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
x-api-key | string | Yes | API key for authorization |
Example Response
[
{
"title": "string",
"type": "string",
"start_date": "string",
"end_date": "string",
"unit_price": 0
}
]Get a Campaign
Endpoint
GET /crowdfunding/campaigns/{identifier}
https://api.growforme.com/crowdfunding/campaigns/{identifier}Authorization
Requires an API key in the X-API-Key header.
Supported Languages
- English
Responses
- 200 OK: Returns a specific campaign.
- 403 Forbidden: Invalid API key.
- 500 Internal Server Error: Unexpected error.
Header Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
x-api-key | string | Yes | API key for authorization |
Example Response
{
"title": "string",
"type": "string",
"start_date": "string",
"end_date": "string",
"unit_price": 0
}Last updated on