Atlassian · Arazzo Workflow

Atlassian Jira Search Issues with JQL

Version 1.0.0

Run a JQL search and fetch the full detail of the first matching issue.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub CodeCollaborationPlatformProductivitySoftware DevelopmentArazzoWorkflows

Provider

atlassian

Workflows

search-issues-jql
Search issues with JQL and read back the first match.
Executes a JQL search, returns the matching issue list and total, and reads the full detail of the first matching issue when the result set is non-empty.
2 steps inputs: authorization, jql, maxResults outputs: firstIssueKey, total
1
searchIssues
Run the JQL search and return the matching issues and total count.
2
getFirstIssue
Fetch the full detail of the first matching issue.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Atlassian Jira Search Issues with JQL
  summary: Run a JQL search and fetch the full detail of the first matching issue.
  description: >-
    Searches Jira for issues using a JQL expression and, when at least one issue
    matches, fetches the full detail of the first result. The flow branches on
    the total count so it only attempts to read an issue when one exists. Each
    step inlines its Basic authentication header, query parameters and
    documented success criteria.
  version: 1.0.0
  x-realizes-capability-ids:
  - BC-900.30
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-900.30
      capability_name: Project Management
      spec: atlassian-issues-api-openapi.yml
      confidence: 0.7
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: issueSearchApi
  url: ../openapi/atlassian-issue-search-api-openapi.yml
  type: openapi
- name: issuesApi
  url: ../openapi/atlassian-issues-api-openapi.yml
  type: openapi
workflows:
- workflowId: search-issues-jql
  summary: Search issues with JQL and read back the first match.
  description: >-
    Executes a JQL search, returns the matching issue list and total, and reads
    the full detail of the first matching issue when the result set is non-empty.
  inputs:
    type: object
    required:
    - authorization
    - jql
    properties:
      authorization:
        type: string
        description: HTTP Basic auth header value.
      jql:
        type: string
        description: The JQL expression to search with (e.g. "project = EX ORDER BY created DESC").
      maxResults:
        type: integer
        description: Maximum number of issues to return per page.
  steps:
  - stepId: searchIssues
    description: Run the JQL search and return the matching issues and total count.
    operationId: atlassianSearchforissuesusingjql
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    - name: jql
      in: query
      value: $inputs.jql
    - name: maxResults
      in: query
      value: $inputs.maxResults
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      issues: $response.body#/issues
      total: $response.body#/total
      firstIssueKey: $response.body#/issues/0/key
    onSuccess:
    - name: hasResults
      type: goto
      stepId: getFirstIssue
      criteria:
      - context: $response.body
        condition: $.issues.length > 0
        type: jsonpath
    - name: noResults
      type: end
      criteria:
      - context: $response.body
        condition: $.issues.length == 0
        type: jsonpath
  - stepId: getFirstIssue
    description: Fetch the full detail of the first matching issue.
    operationId: atlassianGetissue
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    - name: issueIdOrKey
      in: path
      value: $steps.searchIssues.outputs.firstIssueKey
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      key: $response.body#/key
      summary: $response.body#/fields/summary
  outputs:
    total: $steps.searchIssues.outputs.total
    firstIssueKey: $steps.searchIssues.outputs.firstIssueKey

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/atlassian-search-issues-jql-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.