---
title: "Create Profile"
method: POST
path: "/v1/profiles"
tags: ["Profiles"]
---

# Create Profile

`POST /v1/profiles`

Creates a new profile from a browser session. A Profile stores cookies, local storage, and cache.

## Request body

- ProfileRequestSchema
  - `name` string, required — The name of the profile.
  - `description` string — A description of the profile.
  - `source` 'session' — The source of the profile data. currently only `session` is supported.
  - `session_id` string, uuid — The browser session ID is required if the source is set to `session`. The browser session must be running, and the profile will be stored once the browser session terminates.
  - `dedicated_sticky_ip` boolean — Whether to use a dedicated sticky IP for this profile. Defaults to false.

## Response `200`

Profile created successfully.

- SuccessResponse
  - `data` object
    - `status` string

## Other responses

- `400` — Invalid request or input.
- `404` — Session not found or unreachable.
- `409` — Profile name already exists.
- `501` — Feature not implemented.

---

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