Zapier
API endpoints related to our integration with Zapier
Getting Started
As always, all of our API endpoints start with the same base URL:
https://api.countercyclical.io
See the example in our API documentation above for more information
Authentication
An API key is required in order to authenticate successfully between Zapier & Countercyclical. Please visit our Integrations page on the platform to generate your Zapier-specific API key: https://dashboard.countercyclical.io/settings/workspace/integrations
This API is scoped purely to Zapier & cannot be used on any of Countercyclical's other publicly available API endpoints (otherwise a 401 Unauthorized
response will be sent back)
Connecting Zapier & Countercyclical
POST
/zapier/auth
Authenticate with Zapier on Countercyclical
Headers
Content-Type
application/json
Body
Response
{
"success": true,
}
Triggers
Investments
GET
/zapier/triggers/investments
Kicks off a Zap in Zapier based on an Investment created in your workspace.
Headers
Content-Type
application/json
Query Parameters
Response
{
"id": 1,
"name": "John",
"age": 30
}
Actions
Investments
Create a New Investment
POST
/zapier/actions/investments
Creates a new Investment in your Countercyclical Workspace
Headers
Content-Type
application/json
Query Parameters
apiKey
API key generated in the Zapier integration on our platform.
Body
tickerSymbol
string
The ticker symbol for a publicly-traded company (following NASDAQ Symbology is recommended for best results)
Response
{
"success": true,
}
Last updated