---
title: "Auth Users Create"
method: POST
path: "/auth/users/"
tags: ["authentication"]
---

# Auth Users Create

`POST /auth/users/`

Declare per-endpoint throttling configuration attributes for views.

Endpoints can inherit this mixin and set:
- endpoint_default_rate_limit_per_user_per_min: float | None

When set (not None), throttling will use ONLY this default RPM for the endpoint
without requiring API key / org attributes on the request. When unset, the
standard API key / organization / subscription limits apply.

## Headers

- `Authorization` string, required

## Request body

- CustomUserCreateRequest
  - `first_name` string
  - `last_name` string
  - `email` string, required
  - `password` string, required
  - `name` string
  - `username` string

## Response `201`

- CustomUserCreate
  - `first_name` string
  - `last_name` string
  - `email` string, required
  - `id` integer, required
  - `name` string
  - `username` string

---

[API](https://skmtc.net/keywordsai/apis/api-reference.md) · [All operations](https://skmtc.net/keywordsai/apis/api-reference/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/keywordsai/api-reference/versions/c26d550029f8/schema)
