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
Jenkins Has a Free API: Here's How to Use It for CI/CD Automation
How-ToTools

Jenkins Has a Free API: Here's How to Use It for CI/CD Automation

via Dev.toAlex Spinov3h ago

Jenkins REST API is one of the most overlooked features of the most popular CI/CD server. You can trigger builds, check status, manage plugins, create jobs, and build custom dashboards — all via simple HTTP calls. Why Use the Jenkins API? Trigger builds from Slack, GitHub webhooks, or custom tools Monitor build health across all pipelines Automate job creation and configuration Build custom CI/CD dashboards Getting Started export JENKINS_URL = "http://localhost:8080" export JENKINS_USER = "admin" export JENKINS_TOKEN = "your-api-token" # Get Jenkins info curl -s -u " $JENKINS_USER : $JENKINS_TOKEN " " $JENKINS_URL /api/json" | jq '{mode: .mode, numExecutors: .numExecutors, jobs: [.jobs[] | {name: .name, color: .color}]}' # Trigger a build curl -s -u " $JENKINS_USER : $JENKINS_TOKEN " -X POST " $JENKINS_URL /job/my-project/build" # Trigger with parameters curl -s -u " $JENKINS_USER : $JENKINS_TOKEN " -X POST " $JENKINS_URL /job/deploy/buildWithParameters?ENVIRONMENT=staging&VERSION=2.1.

Continue reading on Dev.to

Opens in a new tab

Read Full Article
2 views

Related Articles

I Missed This Claude Setting at First. And It Actually Matters
How-To

I Missed This Claude Setting at First. And It Actually Matters

Medium Programming • 4h ago

Instacart Promo Code: Save on Groceries in March 2026
How-To

Instacart Promo Code: Save on Groceries in March 2026

Wired • 6h ago

How a Switch Actually “Learns”: Demystifying MAC Addresses and the CAM Table
How-To

How a Switch Actually “Learns”: Demystifying MAC Addresses and the CAM Table

Medium Programming • 6h ago

This is the lowest price on a 64GB RAM kit I've seen in months
How-To

This is the lowest price on a 64GB RAM kit I've seen in months

ZDNet • 13h ago

What Is Computer Science? (Learn This Before It’s Too Late)
How-To

What Is Computer Science? (Learn This Before It’s Too Late)

Medium Programming • 13h ago

Discover More Articles