Skip to main content
GET
/
{slug}
/
projects
Get all projects for an organization
curl --request GET \
  --url https://api.dimred.com/api/v2/{slug}/projects \
  --header 'X-API-Key: <api-key>'
[
  {
    "project_id": "<string>",
    "org_id": "<string>",
    "project_name": "<string>",
    "project_description": "<string>",
    "project_type": "<string>",
    "is_pinned": true,
    "created_at": "2023-11-07T05:31:56Z"
  }
]

Authorizations

X-API-Key
string
header
required

API key for authentication

Path Parameters

slug
string
required

Organization slug

Query Parameters

include_pinned
boolean
default:false

Whether to filter for pinned projects only

Response

200 - application/json

Projects retrieved successfully

project_id
string
required

Unique identifier for the project

org_id
string
required

Identifier of the organization the project belongs to

project_name
string
required

Name of the project

project_type
string
required

Type of the project

is_pinned
boolean
required

Whether the project is pinned

created_at
string<date-time>
required

Timestamp when the project was created

project_description
string

Description of the project

I