Skip to main content
GET
/
portal
/
roadmap
Get the public roadmap
curl --request GET \
  --url https://productlane.com/api/v2/portal/roadmap \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "<string>",
      "name": "<string>",
      "icon": "<string>",
      "color": "<string>",
      "workspace_id": "<string>",
      "score": 123,
      "is_upvoted": true,
      "created_at": "<string>",
      "updated_at": "<string>",
      "due_date": "<string>",
      "due_date_raw": "<string>",
      "due_date_resolution": "<string>",
      "linear_roadmap": {
        "id": "<string>",
        "name": "<string>"
      },
      "sort_order": 123,
      "archived": true,
      "project_id": "<string>",
      "linear_project_id": "<string>",
      "description": "<string>",
      "status_name": "<string>",
      "status_color": "<string>",
      "beta_url": "<string>"
    }
  ]
}

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

contact_email
string<email>

Contact email to evaluate is_upvoted against. Without it every item returns is_upvoted: false.

language
string

BCP-47 language code. Merges translations onto the items. Requires the Pro plan and the language enabled in workspace settings.

Response

Successful response

items
object[]
required