Zapier API docs

1. Add Collected Link Action: /api/zapier/add-collected-link  – POST

Add a new collected item to a newsletter

Request

Query Parameter

FieldTypeDescription
api_keyStringZapier API key for the user 

In Body

FieldTypeDescription
publicationStringThe publication id you want to add a new item to
urlStringThe item URL
titleStringThe item title
descriptionStringThe item description
image_urlStringThe item image URL

Response

FieldTypeDescription
idStringThe created item id
url StringThe create item url

2. Add Subscriber Action: /api/zapier/add-subscriber- POST

Add a new subscriber to a newsletter 

Request

Query Parameter

FieldTypeDescription
api_keyStringZapier API key for the user 

In Body

FieldTypeDescription
publicationStringThe publication id you want to add subscribers to
emailStringSubscriber email

Response

FieldTypeDescription
email StringThe created subscriber email

3. Get Latest Collected Items Trigger: /api/zapier/get-latest-collected-items  – GET

Get the latest collected items 

Request

Query Parameter

FieldTypeDescription
api_keyStringZapier API key for the user 
publicationStringThe publication id you want to fetch the latest collected item from

Response

Array of objects

FieldTypeDescription
idStringItem id
link StringThe collected item link
titleStringThe collected item title
description Stringdescription
imageUrlStringThe image url for the collected item

4. Get Latest Issues Trigger: /api/zapier/get-latest-issues – GET

Get the latest published issues

Request

Query Parameter

FieldTypeDescription
api_keyStringZapier API key for the user 
publicationStringThe publication id you want to fetch the latest published issues from

Response

Array of objects

FieldTypeDescription
idStringItem id
nameStringIssue name
publishedDateStringThe issue published date

5. Get Latest Subscribers Trigger: /api/zapier/get-latest-subscribers – GET

Get the latest subscribers

Request

Query Parameter

FieldTypeDescription
api_keyStringZapier API key for the user 
publicationStringThe publication id you want to fetch the latest published issues from

Response

Array of objects

FieldTypeDescription
idStringItem id
email StringThe subscriber email

6. Get List of publications Trigger: /api/zapier/get-publications – GET

Get the list of publication the user with API key have access to

Request

Query Parameter

FieldTypeDescription
api_keyStringZapier API key for the user 

Response

Array of objects

FieldTypeDescription
idStringItem id
name StringThe publication name

7. Validate Zapier API key: /api/trpc/user.validateZapierAPIKey – GET

Check if the Zapier API key is a valid one

Request

Query Parameter

FieldTypeDescription
api_keyStringZapier API key for the user 

Response

Array of objects

FieldTypeDescription
successbooleanIndicates whether the API key is valid or no
Scroll to Top