Skip to main content
List Cases
curl --request GET \
  --url https://api.noqa.ai/v1/cases/ \
  --header 'x-api-key: <api-key>'
[
  {
    "id": "<string>",
    "title": "<string>",
    "instructions": "<string>",
    "tags": [
      "<string>"
    ]
  }
]

Authorizations

x-api-key
string
header
required

API Key for authentication. Get your API key from NOQA dashboard.

Headers

x-api-key
string | null

API Key for authentication

Query Parameters

app_id
string<uuid>
required

Application ID

test_id
string<uuid> | null

Filter cases by test ID (returns cases from that test run)

tags
string | null

Filter cases by tag names (comma-separated, returns cases with all these tags)

skip
integer
default:0

Number of records to skip

Required range: x >= 0
limit
integer
default:50

Maximum number of records

Required range: 1 <= x <= 100

Response

Successful Response

id
string
required

Test case ID

title
string
required

Test case title

instructions
string
required

Test case instructions with expanded flow content

tags
string[]

List of tag names assigned to this test case

Maximum array length: 100