DEV Community

Abdul Qadir
Abdul Qadir

Posted on • Originally published at Medium on

Jira API Token Guide: Create a Test Account and Generate API Keys (2026)

If you're building integrations, test automation, or AI-driven workflows with Jira, you'll need an API token to authenticate your requests.

This guide shows how to quickly create a Jira test account and generate an API token you can use in scripts, CI/CD pipelines, or automation tools.


Step 1 — Create a Jira Account

  1. Go to https://www.atlassian.com/software/jira
  2. Click Get it free
  3. Sign up using your email, Google account, or Microsoft account
  4. Follow the prompts to create your Jira site (e.g. yourname.atlassian.net)
  5. Once complete, you’ll have access to a free Jira Cloud instance

This environment is perfect for testing integrations and automation safely.


Step 2 — Generate an API Token

An API token allows scripts and tools to authenticate securely without using your password.

  1. Go to: https://id.atlassian.com/manage-profile/security/api-tokens
  2. Click Create API token
  3. Enter a label (e.g. Jira Automation)
  4. Click Create
  5. Copy the token and store it securely

Important: You won’t be able to view the token again after closing the dialog.


Step 3 — Use the API Token (Example)

Most tools authenticate to Jira Cloud using:

  • Username → your Atlassian email
  • Password → your API token

Here’s a simple example using curl:


bash
curl -u your-email@example.com:YOUR_API_TOKEN \
  -X GET \
  -H "Accept: application/json" \
  https://your-domain.atlassian.net/rest/api/3/project
Enter fullscreen mode Exit fullscreen mode

Top comments (0)