Zapier

API endpoints related to our integration with Zapier

Getting Started

All of our API endpoints relating to our endpoints start with the same base URL:

https://api.countercyclical.io/v1

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

GET /integrations/zapier/auth

Authenticate with Zapier on Countercyclical

Headers

Name
Value

Content-Type

application/json

Body

Name
Type
Description

apiKey

string

Response

{
  "success": true,
  "emailAddress": "name@example.com",
  "activeWorkspace": "Workspace Name",
}

Triggers

Investments

GET /integrations/zapier/triggers/investments

Kicks off a Zap in Zapier based on an Investment created in your workspace.

Headers

Name
Value

Content-Type

application/json

Query Parameters

Name
Type
Description

apiKey

string

Response

Returns an array of Investments in your Workspace.

[
  {
    "id": "abc1234...",
    ...
  }
]

Actions

Investments

Create a New Investment

POST /integrations/zapier/actions/investments

Creates a new Investment in your Countercyclical Workspace

Headers

Name
Value

Content-Type

application/json

Query Parameters

Name
Value

apiKey

Body

Name
Required
Type
Description

tickerSymbol

Yes

string

Response

Returns the Investments created from your Zapier Action.

[
  {
    "id": "abc1234...",
    ...
  }
]

Last updated