Skip to main content
GET
/
changelogs
List changelogs
curl --request GET \
  --url https://productlane.com/api/v2/changelogs \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "created_at": "<string>",
      "updated_at": "<string>",
      "date": "<string>",
      "published": true,
      "archived": true,
      "title": "<string>",
      "content": "<string>",
      "image_url": "<string>",
      "tags": [
        {
          "id": "<string>",
          "name": "<string>",
          "color": "<string>",
          "icon": "<string>"
        }
      ]
    }
  ],
  "page": {
    "cursor": "<string>",
    "has_more": true,
    "limit": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://productlane.mintlify.dev/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

limit
integer
Required range: 1 <= x <= 200
cursor
string
published
enum<string>
Available options:
true,
false,
1,
0,
yes,
no,
on,
off
archived
enum<string>
Available options:
true,
false,
1,
0,
yes,
no,
on,
off
language
string

BCP-47 language code. Merges the matching translation onto each row. Requires the Pro plan and the language enabled in workspace settings.

title_contains
string
Required string length: 1 - 255
tag_id
string

Comma-separated tag ids. Matches changelogs with at least one.

created_after
string<date-time>
created_before
string<date-time>
updated_after
string<date-time>
updated_before
string<date-time>

Response

Successful response

data
object[]
required
page
object
required