---
title: "Get a project"
method: GET
path: "/projects/{owner}/{name}"
tags: ["Projects"]
---

# Get a project

`GET /projects/{owner}/{name}`

## Path parameters

- `owner` string, required
- `name` string, required

## Response `200`

Retrieved

- Project
  - `name` string, required — The name of the project. Must be unique to a given owner
  - `description` string — A description of the project
  - `public` boolean — Whether or not a project is publicly viewable
  - `id` string, required — The project ID
  - `owner` AccountPublic, required
    - `id` string, required
    - `account_type` string, required
    - `name` string, required
    - `display_name` string
    - `description` string
    - `picture_url` string — https://robohash.org/ladybugbot
  - `permissions` UserPermission, required
    - `admin` boolean — The user has admin permission to this resource
    - `write` boolean — The user has write permission on this resource
    - `read` boolean — The user has read permission on this resource
  - `slug` string, required — The project name in slug format
  - `usage` Usage
    - `start` string, date-time, required — The start date for this usage aggregation
    - `end` string, date-time, required — The end date for this usage aggregation
    - `cpu` number — cpu usage
    - `memory` number — memory usage
    - `succeeded` integer — succeeded usage
    - `failed` integer — failed usage
    - `daily_usage` DailyUsage[] — daily breakdown of usage
      - `date` string, date-time, required — The day this usage was aggregated for
      - `cpu` number — cpu usage
      - `memory` number — memory usage
      - `succeeded` integer — succeeded usage
      - `failed` integer — failed usage

## Other responses

- `400` — Invalid request
- `403` — Access forbidden
- `404` — Not found
- `422` — Validation Error
- `500` — Server error

---

[API](https://skmtc.net/pollination/apis/pollination-server.md) · [All operations](https://skmtc.net/pollination/apis/pollination-server/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/pollination/pollination-server/revisions/c1f3c6d96b31/schema)
