A Publication is the central resource on your account — the unit most other v3 resources hang off (recommendations, signup flow, and partner program are all scoped to a publication). Use this resource to list your account's publications, or fetch a single one by UUID.
GET https://api.sparkloop.app/v3/publications
Paginated — accepts page and per_page. Newest first.
{
"publications": [
<Publication Object>
],
"meta": {
"per_page": 50,
"page": 1,
"total_pages": 1,
"total_publications": 3
}
}GET https://api.sparkloop.app/v3/publications/:uuid
Path Parameters
uuid*
String
The publication's UUID.
{
"publication": <Publication Object>
}{
"error": "Resource not found."
}