Skip to main content
GET
/
v1
/
projects
/
{projectId}
Get a project by ID
curl --request GET \
  --url https://api.devic.ai/v1/projects/{projectId} \
  --header 'Authorization: Bearer <token>'
{
  "_id": "<string>",
  "clientUID": "<string>",
  "name": "<string>",
  "identifier": "<string>",
  "description": "<string>",
  "imageUrl": "<string>",
  "createdByUserUID": "<string>",
  "creationTimestampMs": 123,
  "lastEditTimestampMs": 123,
  "archived": true
}

Authorizations

Authorization
string
header
required

Use JWT token for authentication

Path Parameters

projectId
string
required

Project ID

Response

Project details

_id
string

Project ID

clientUID
string

Client UID

name
string

Project name

identifier
string

Unique identifier (lowercase alphanumeric with hyphens)

description
string

Project description

imageUrl
string

Project image URL

visibility
enum<string>

Project visibility

Available options:
public,
private
createdByUserUID
string

UID of the user that created the project

creationTimestampMs
integer<int64>

Creation timestamp (ms)

lastEditTimestampMs
integer<int64>

Last edit timestamp (ms)

archived
boolean

Whether the project is archived