The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

HTTP 429 when using PAT authorization through python library

Min Yan A
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
January 27, 2026

I tried to use PAT to access my account and fetch issues, I got HTTP status 429, but I just create the PAT and only asked one request. 

from jira import JIRA

jira_server = "https://xxxxx.com/"
pat_key = "xxxxxxxxxx"


jira = JIRA(server=jira_server, token_auth=pat_key)

try:
user = jira.current_user()
print(f"✓ Authentication successful! Logged in as: {user}")
except Exception as e:
print(f"✗ Authentication failed: {e}")


'X-RateLimit-Limit': '0', 'X-RateLimit-Remaining': '0', 'X-RateLimit-FillRate': '0', 'X-RateLimit-Interval-Seconds': '1', 'Retry-After': '9223372036854775807'

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

1 vote
Marc -Devoteam-
Community Champion
January 27, 2026

Hi @Min Yan A 

Check the server logs.

Or check with you Jira administrator.

Rest API limits for on-premise products are set and controlled by the Jira Administrator