Sync from the server
const url = 'https://example.com/api/v1/sync?limit=50&include=all&include_own=false';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://example.com/api/v1/sync?limit=50&include=all&include_own=false' \ --header 'Authorization: Bearer <token>'Fetch actions taken since the specified last sync time
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Query Parameters
Section titled “Query Parameters”The most recent update timestamp to fetch data from
The number of results to include per page
The entities to include in the response. Defaults to all
Whether to include updates made by the requesting device. Defaults to false
Responses
Section titled “Responses”Sync requested successfully
object
An object containing action information
object
The type of entity targeted by an action
The action being taken on the target
A client-generated UUID identifier for the action
The UTC timestamp of when the action was undertaken on the client
object
The server-generated synchronization ID for the subscription
The guid field as found in the podcast’s RSS feed
The canonical address of the podcast RSS feed
The UTC timestamp at which the user subscribed to the feed
The UTC timestamp at which the user unsubscribed from the feed
Example
{ "results": [ { "type": "subscription", "data": { "sync_id": "4648b4d7-90bf-497c-a5e7-8383d1083d76", "guid": "677ea490-690e-51cb-8b43-755df6c55270", "feed_url": "https://example.com/feed1", "subscribed_at": "2026-07-11T15:30:00.1Z" } } ]}Access token is invalid
Generic error object
object
The error message
The error description
Example
{ "error": "Unauthorized", "description": "The supplied access token is invalid"}Internal server error
Generic error object
object
The error message
The error description
Example
{ "error": "Internal server error", "description": "The server encountered an error while processing the request"}