In order to make use of the API, a user will need API keys and access tokens (optional).

1. API Key

Request a token by clicking on "Request API Token" link at the top of the page. Fill out the form and we will get back to you with an API token if your supplied email is associated with a campaign.

2. Access Token

The API token must be used with an access token in order to retrieve sensitive information from the campaign such as shipping addresses, emails, etc.

To generate your access_token, just run the following curl command (be sure to use the credentials for the indiegogo account you'll be using to link to campaigns as a team member):

curl -X POST -d grant_type=password -d credential_type=email -d email=[EMAIL] -d password=[PASSWORD] https://auth.indiegogo.com/oauth/token

access_token may expire, so you may need to re-generate it using the above command.