# ◉ Project Endpoints ## Get all projects - [GET /projects](https://testpad-api.redocly.app/openapi/project-endpoints/paths/~1projects/get.md): Retrieves a list of all active projects visible to the authenticating API key. Only basic information (name, id, description) is returned per project. Archived projects are not included. Look to these endpoints for retrieving information about the folder and script contents of projects: - GET /projects/:p/folders - GET /projects/:p/folders/:f ## Get a project - [GET /projects/{project_id}](https://testpad-api.redocly.app/openapi/project-endpoints/paths/~1projects~1%7Bproject_id%7D/get.md): Retrieves the basic information about the project specified by project_id. Project IDs can be found in the app by inspecting the URL or via the API endpoint to Get all projects. Does not retrieve the script and folder contents of a project. For project contents, please see: - GET /projects/:p/folders – for getting all the script and folder contents of a project - GET /projects/:p/folders/:f – for getting the contents of a particular folder in a project