Skip to main content
GET
https://api.laneapp.co/api
/
records
List records
curl --request GET \
  --url https://api.laneapp.co/api/records \
  --header 'X-API-Key: <api-key>'
[
  {
    "id": "66a1b2c3d4e5f6a7b8c9d0e1",
    "title": "Bulk export to CSV",
    "description": "Users want to export filtered lists to CSV.",
    "status": "Triage",
    "assignee": "Priya Shah",
    "product": "Mobile app",
    "tags": [
      "export",
      "csv"
    ],
    "accounts": [
      "Globex"
    ],
    "type": "Idea",
    "source": "Zapier",
    "importance": 2,
    "createdAt": "2026-05-20T11:23:00.000Z",
    "updatedAt": "2026-05-20T11:23:00.000Z"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.laneapp.co/llms.txt

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

Authorizations

X-API-Key
string
header
required

Pass your Lane API key in the X-API-Key header.

Query Parameters

record_type
enum<string>
required

Which record type to fetch.

Available options:
Idea,
Feedback,
Feature,
Objective

Case-insensitive substring match against title and description.

sortField
string
default:createdAt
sortOrder
enum<string>
default:desc
Available options:
asc,
desc
startDate
string<date-time>

Only return records created on or after this timestamp (ISO 8601).

endDate
string<date-time>

Only return records created on or before this timestamp (ISO 8601).

product
string

Product ObjectId from GET /records/product. Applies to Idea, Feedback, and Feature.

assignee
string

User ObjectId from GET /records/users.

tags
string[]

One or more Tag ObjectIds from GET /records/tags. Repeat the query param to pass multiple.

Response

Matching records.

id
string

MongoDB ObjectId.

title
string
description
string

Plain text — any HTML in the source is stripped before being returned.

status
string
Example:

"Triage"

assignee
string | null

Assignee's display name (not their ObjectId).

product
string | null

Product label.

tags
string[]

Array of tag labels.

health
string | null
accounts
string[]

Account names. Present only on Idea and Feedback records.

release
string | null

Release label. Present only on Feature records.

timeFrame
string | null

Timeframe label. Present only on Objective records.

type
enum<string>
Available options:
Idea,
Feedback,
Feature,
Objective
source
string
importance
integer
createdAt
string<date-time>
updatedAt
string<date-time>