FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
Linear Has a Free API — Manage Issues and Projects From Your Terminal
How-ToTools

Linear Has a Free API — Manage Issues and Projects From Your Terminal

via Dev.to TutorialAlex Spinov2h ago

Jira Alternative With a Better API Linear is a project management tool loved by startups. Free for teams up to 250 issues. Their GraphQL API is clean and well-documented. Setup import requests API_KEY = " lin_api_your_key " # Settings > API > Personal API Keys HEADERS = { " Authorization " : API_KEY , " Content-Type " : " application/json " } List Your Issues def my_issues (): query = """ { issues(filter: { assignee: { isMe: { eq: true } } }) { nodes { title state { name } priority createdAt } } } """ r = requests . post ( " https://api.linear.app/graphql " , headers = HEADERS , json = { " query " : query }) return r . json ()[ " data " ][ " issues " ][ " nodes " ] for issue in my_issues (): print ( f " [ { issue [ state ][ name ] } ] { issue [ title ] } " ) Create an Issue def create_issue ( title , team_id , description = "" , priority = 0 ): mutation = """ mutation($input: IssueCreateInput!) { issueCreate(input: $input) { success issue { id title url } } } """ variables = { " input

Continue reading on Dev.to Tutorial

Opens in a new tab

Read Full Article
2 views

Related Articles

We Tested This FREE TradingView Trend Indicator… It Only Works Here!
How-To

We Tested This FREE TradingView Trend Indicator… It Only Works Here!

Medium Programming • 3h ago

5 Campfire Songs Anyone Can Play on Guitar (Free Chord Charts)
How-To

5 Campfire Songs Anyone Can Play on Guitar (Free Chord Charts)

Dev.to Beginners • 6h ago

Bybit vs HTX — Which Crypto Exchange Is Better? (2026)
How-To

Bybit vs HTX — Which Crypto Exchange Is Better? (2026)

Dev.to Beginners • 6h ago

Stop Posting Noise: Building in Public Needs Real Value
How-To

Stop Posting Noise: Building in Public Needs Real Value

Dev.to Beginners • 7h ago

We got an audience with the "Lunar Viceroy" to talk how NASA will build a Moon base
How-To

We got an audience with the "Lunar Viceroy" to talk how NASA will build a Moon base

Ars Technica • 7h ago

Discover More Articles