List Projects
GET
Retrieve a paginated list of OWASP projects.
Query Parameters
Filter by project level. Available values:
flagship- Flagship projectsproduction- Production projectslab- Lab projectsincubator- Incubator projectsother- Other projects
Structured search query supporting field-based filtering. Examples:
name:security- Search for projects with “security” in the namestars:>100- Projects with more than 100 starsname:owasp stars:>50- Combined search
name- Project name (case-insensitive contains)stars- Number of stars (supports>,<,>=,<=,=)
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)
-level_raw,-stars_count,-forks_countPage number for pagination. Default:
1Number of results per page. Default:
100Response Schema
Array of project objects
Total number of projects matching the filter
Examples
- cURL
- Python
- JavaScript
Get Project
GET
Retrieve detailed information about a specific OWASP project.
Path Parameters
Project identifier. Can be provided with or without the
www-project- prefix.Examples:Nestwww-project-NestTop-Tenwww-project-Top-Ten
Response Schema
ISO 8601 timestamp when the project was created
Unique project identifier (nest_key)
Project level:
flagship, production, lab, incubator, or otherProject name
ISO 8601 timestamp when the project was last updated
Project description
Array of project leaders
Error Responses
Examples
- cURL
- Python
- JavaScript