Skip to Content
Version 0.0.2 is released 🎉
DocumentationCrowd FundingCampaignsAvailable Campaigns

Available Campaigns

Endpoint

GET /crowdfunding/campaigns

https://api.growforme.com/crowdfunding/campaigns

Authorization

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

ParameterTypeRequiredDescription
x-api-keystringYesAPI 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

ParameterTypeRequiredDescription
x-api-keystringYesAPI key for authorization

Example Response

{ "title": "string", "type": "string", "start_date": "string", "end_date": "string", "unit_price": 0 }
Last updated on