Skip to main content
GET
/
packages
/
{id}
/
versions
Get all versions of a package
curl --request GET \
  --url https://api.getmembrane.com/packages/{id}/versions \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "<string>",
      "version": "<string>",
      "changelog": "<string>",
      "parentPackageVersion": "<string>"
    }
  ],
  "cursor": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Package ID

Query Parameters

limit
integer

Maximum number of items to return (1-1000)

Required range: 1 <= x <= 1000
cursor
string

Pagination cursor from a previous response

Response

200 - application/json
items
object[]
required
cursor
string