curl --request POST \
--url https://api.getfernand.com/integrations/linear/search \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"query": "authentication bug"
}
'[
{
"id": "8a7b93d1-18f7-4a9f-b5c6-3e2d1f9a8c7b",
"title": "Fix authentication bug",
"url": "https://linear.app/team/issue/ENG-123",
"identifier": "ENG-123",
"assignee": {
"name": "Richard Hendricks",
"avatar_url": "https://avatar.linear.app/9c0d1e2f"
},
"state": {
"name": "In Progress",
"type": "started",
"color": "#f2c94c",
"last_updated_at": "2026-01-15T10:30:00Z"
},
"labels": [
{
"name": "bug",
"color": "#5e6ad2"
}
],
"priority": 1,
"priority_label": "Urgent",
"last_updated_at": "2026-01-15T10:30:00Z"
}
]curl --request POST \
--url https://api.getfernand.com/integrations/linear/search \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"query": "authentication bug"
}
'[
{
"id": "8a7b93d1-18f7-4a9f-b5c6-3e2d1f9a8c7b",
"title": "Fix authentication bug",
"url": "https://linear.app/team/issue/ENG-123",
"identifier": "ENG-123",
"assignee": {
"name": "Richard Hendricks",
"avatar_url": "https://avatar.linear.app/9c0d1e2f"
},
"state": {
"name": "In Progress",
"type": "started",
"color": "#f2c94c",
"last_updated_at": "2026-01-15T10:30:00Z"
},
"labels": [
{
"name": "bug",
"color": "#5e6ad2"
}
],
"priority": 1,
"priority_label": "Urgent",
"last_updated_at": "2026-01-15T10:30:00Z"
}
]Searches for Linear issues in the organization based on the provided search query. If no query is provided, returns the most recent issues. Only returns issues in non-completed states (triage, unstarted, started, backlog). Results are limited to 20 issues, sorted by creation date.Documentation Index
Fetch the complete documentation index at: https://developers.getfernand.com/llms.txt
Use this file to discover all available pages before exploring further.
Search query string (optional, if empty returns recent issues).
"authentication bug"
Search results retrieved successfully.
Unique identifier of the Linear issue.
"8a7b93d1-18f7-4a9f-b5c6-3e2d1f9a8c7b"
Title of the issue.
"Fix authentication bug"
URL to view the issue in Linear.
"https://linear.app/team/issue/ENG-123"
Human-readable issue identifier.
"ENG-123"
Assigned user (null if unassigned).
Show child attributes
Current workflow state of the issue.
Show child attributes
List of labels applied to the issue.
Show child attributes
Priority level (0=No priority, 1=Urgent, 2=High, 3=Medium, 4=Low).
1
Display name of the priority level.
"Urgent"
ISO 8601 timestamp of the last update.
"2026-01-15T10:30:00Z"
Was this page helpful?