---
title: "Get Project Card"
method: GET
path: "/api/v1/projects/{project_id}"
tags: ["Projects"]
---

# Get Project Card

`GET /api/v1/projects/{project_id}`

## Path parameters

- `project_id` string, uuid, required

## Response `200`

Successful Response

- ProjectCard
  - `project_id` string, uuid, required — The unique identifier of the project
  - `project_name` string, required — The name of the project, used to identify it in the web UI
  - `project_status` 'draft' | 'deploying' | 'live' | 'error', required
  - `preview_image` StaticAsset — Represents a static asset like an image or a file.
    - `url` string, nullable
    - `file_path` string, path, nullable
  - `created_at` string, date-time, required
  - `updated_at` string, date-time, required
  - `created_by` ReducedUserProfile, required
    - `user_id` string, required
    - `first_name` string, required
    - `last_name` string, required
    - `email` string, required
    - `avatar_url` string, nullable, required
    - `is_deleted` boolean, required
  - `updated_by` ReducedUserProfile, required
    - `user_id` string, required
    - `first_name` string, required
    - `last_name` string, required
    - `email` string, required
    - `avatar_url` string, nullable, required
    - `is_deleted` boolean, required
  - `current_deployment` ProjectDeploymentCard, required — A card representing a project deployment. Attributes: project_deployment_id (ProjectDeploymentID): The unique identifier of the project deployment. project_version_id (ProjectVersionID): The unique identifier of the project version. project_id (ProjectID): The unique identifier of the project. organization_id (OrganizationID): The unique identifier of the organization. is_active (bool): Whether the deployment is active. deployment_failed (bool): Whether the deployment failed. deployed_by (ReducedUserProfile): The user who deployed the project. public_url (str | None): The public URL of the deployment. deployment_url (str | None): The deployment URL (subdomain-based). custom_domains (list[CustomDomainInfo]): List of custom domains linked to this project. created_at (AwareDatetime): The date and time the deployment was created. updated_at (AwareDatetime): The date and time the deployment was last updated.
    - `project_deployment_id` string, uuid, required — The unique identifier a project deployment
    - `project_version_id` string, uuid, required — The unique identifier of the project version
    - `project_id` string, uuid, required — The unique identifier of the project
    - `organization_id` string, required — The ID of an organization in Rebolt.
    - `is_active` boolean, required
    - `deployment_failed` boolean, required
    - `deployed_by` ReducedUserProfile, required
      - `user_id` string, required
      - `first_name` string, required
      - `last_name` string, required
      - `email` string, required
      - `avatar_url` string, nullable, required
      - `is_deleted` boolean, required
    - `public_url` string, nullable, required
    - `deployment_url` string, nullable, required
    - `created_at` string, date-time, required
    - `updated_at` string, date-time, required
  - `deployments_are_public` boolean, required
  - `deployments_are_enabled` boolean, required
  - `metadata` object
  - `last_conversation_id` string, uuid, nullable, required — The unique identifier of the conversation

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/rebolt/apis/fastapi.md) · [All operations](https://skmtc.dev/rebolt/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/rebolt/fastapi/revisions/ee5884f323f3/schema)
