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
- Go to https://www.atlassian.com/software/jira
- Click Get it free
- Sign up using your email, Google account, or Microsoft account
- Follow the prompts to create your Jira site (e.g.
yourname.atlassian.net) - 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.
- Go to: https://id.atlassian.com/manage-profile/security/api-tokens
- Click Create API token
- Enter a label (e.g. Jira Automation)
- Click Create
- 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


Top comments (0)