Skip to main content

List Issues

GET
Retrieve a paginated list of GitHub issues.

Query Parameters

organization
string
Filter issues by organization that owns the repository.Example: OWASP
repository
string
Filter issues by repository name.Example: Nest
state
string
Filter issues by state.
  • open - Open issues
  • closed - Closed issues
ordering
string
Sort results by field. Prefix with - for descending order.
  • created_at - Creation date (ascending)
  • -created_at - Creation date (descending)
  • updated_at - Last update date (ascending)
  • -updated_at - Last update date (descending)
Default: -created_at,-updated_at
page
integer
Page number for pagination. Default: 1
limit
integer
Number of results per page. Default: 100

Response Schema

items
array
Array of issue objects
count
integer
Total number of issues matching the filter

Examples

# List all issues
curl -X GET "https://nest.owasp.org/api/v0/issues/"

# Filter by organization
curl -X GET "https://nest.owasp.org/api/v0/issues/?organization=OWASP"

# Filter by repository
curl -X GET "https://nest.owasp.org/api/v0/issues/?repository=Nest"

# Filter by organization and repository
curl -X GET "https://nest.owasp.org/api/v0/issues/?organization=OWASP&repository=Nest"

# Filter by state (open issues only)
curl -X GET "https://nest.owasp.org/api/v0/issues/?state=open"

# Sort by update date (most recently updated first)
curl -X GET "https://nest.owasp.org/api/v0/issues/?ordering=-updated_at"

# Combine filters and pagination
curl -X GET "https://nest.owasp.org/api/v0/issues/?organization=OWASP&state=open&page=1&limit=20"

Get Issue

GET
Retrieve detailed information about a specific GitHub issue.

Path Parameters

organization_id
string
required
Organization login/username that owns the repository.Example: OWASP
repository_id
string
required
Repository name.Example: Nest
issue_id
integer
required
Issue number.Example: 1234

Response Schema

created_at
datetime
ISO 8601 timestamp when the issue was created
state
string
Issue state: open or closed
title
string
Issue title
updated_at
datetime
ISO 8601 timestamp when the issue was last updated
url
string
GitHub URL for the issue
body
string
Issue body/description content

Error Responses

404 Not Found
object

Examples

# Get issue by organization, repository, and issue number
curl -X GET "https://nest.owasp.org/api/v0/issues/OWASP/Nest/1234"

Build docs developers (and LLMs) love