Skip to Content
Version 0.0.2 is released 🎉
DocumentationCrowd FundingFundersAll Funders

All Funders

Endpoint

GET /crowdfunding/campaigns/funders

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

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 Funder

Endpoint

GET /crowdfunding/campaigns/funders/{identifier}

https://api.growforme.com/crowdfunding/campaigns/funders/{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