Linear (API key)

Linear helps streamline software projects, sprints, tasks, and bug tracking. It's built for high-performance teams.

Go to site
Explore
/
Apps
/
Linear (API key)

Linear (API key) API Integrations

Build and run workflows using the Linear (API key) API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

With the Linear API, you can manage your workflow, track issues, and automate your development process. Here are some examples of what you can build:

  • A custom workflow management tool
  • A tool to track issues and feature requests
  • A development process automation tool
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    linear_app: {
      type: "app",
      app: "linear_app",
    }
  },
  async run({steps, $}) {
    const data = {
      "query": `{ 
        user(id: "me") {
          id
          email
          name
        }
      }`,
    }
    return await axios($, {
      method: "post",
      url: `https://api.linear.app/graphql`,
      headers: {
        "Authorization": `${this.linear_app.$auth.api_key}`,
        "Content-Type": `application/json`,
      },
      data,
    })
  },
})
Create issue with Linear (API key) API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + Linear (API key)
 
Try it
Send Message (Advanced) with Discord Webhook API on Issue Created (Instant) from Linear (API key) API
Linear (API key) + Discord Webhook
 
Try it
Add Multiple Rows with Google Sheets API on Issue Created (Instant) from Linear (API key) API
Linear (API key) + Google Sheets
 
Try it
Create issue with Linear (API key) API on New Item in Feed from RSS API
RSS + Linear (API key)
 
Try it
Create issue with Linear (API key) API on New Message from Discord API
Discord + Linear (API key)
 
Try it
New Created Comment (Instant) from the Linear (API key) API

Emit new event when a new comment is created. See the docs here

 
Try it
New Created Issue (Instant) from the Linear (API key) API

Emit new event when a new issue is created. See the docs here

 
Try it
New Issue Status Updated (Instant) from the Linear (API key) API

Emit new event when the status of an issue is updated. See the docs here

 
Try it
New Updated Issue (Instant) from the Linear (API key) API

Emit new event when an issue is updated. See the docs here

 
Try it
Create Issue with the Linear (API key) API

Create an issue (API Key). See the docs here

 
Try it
Get Issue with the Linear (API key) API

Get an issue by ID (API Key). See the docs here

 
Try it
Get Teams with the Linear (API key) API

Get all the teams (API Key). See the docs here

 
Try it
Search Issues with the Linear (API key) API

Search issues (API Key). See the docs here

 
Try it
Update Issue with the Linear (API key) API

Update an issue (API Key). See the docs here

 
Try it

Authentication

Linear (API key) uses API keys for authentication. When you connect your Linear (API key) account, Pipedream securely stores the keys so you can easily authenticate to Linear (API key) APIs in both code and no-code steps.

Retrieve your personal API key in the API settings in your Linear account.