---
title: "Create labels"
method: POST
path: "/api/labels/"
tags: ["Labels"]
---

# Create labels

`POST /api/labels/`

Add labels to your project without updating the labeling configuration.

## Query parameters

- `ordering` string
- `page` integer

## Request body

- LabelCreateRequest[]
  - `approved` boolean — Status of label
  - `approved_by` integer, nullable — User who approved this label
  - `description` string, nullable — Label description
  - `from_name` string, required
  - `project` integer, required
  - `title` string, required — Label title
  - `value` unknown, required

## Response `201`

- PaginatedLabelCreateList
  - `count` integer, required
  - `next` string, uri, nullable
  - `previous` string, uri, nullable
  - `results` LabelCreate[], required
    - `approved` boolean — Status of label
    - `approved_by` integer, nullable — User who approved this label
    - `created_at` string, date-time, required — Time of label creation
    - `created_by` integer, required
    - `description` string, nullable — Label description
    - `from_name` string, required
    - `id` integer, required
    - `organization` integer, required
    - `project` integer, required
    - `projects` integer[], required
    - `title` string, required — Label title
    - `updated_at` string, date-time, required — Time of label modification
    - `value` unknown, required

---

[API](https://skmtc.net/humansignal/apis/label-studio-api.md) · [All operations](https://skmtc.net/humansignal/apis/label-studio-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/humansignal/label-studio-api/revisions/1d13f90af57a/schema)
