Jira Issue Search endpoint gave me a wrong Json structure

I am currently calling the Jira API endpoint:

> mycompany.atlassian.net/rest/api/3/search?jql='query'&maxResults=500

Which gave me a wrong formatted JSON. The problem with the JSON file is basically:

  • keys and fields are using single quotes (') instead of double quotes (");
  • True and False are written with capital letters
  • null is written as None

Is there a parameter that I can pass during the call of API to specify using international standards for the JSON?

The JSON returns is properly formatted, aka it is a legal JSON, but you are using Python and something/somehow the JSON string has been transformed into a Python object, therefore what you see.

1 Like