GET
/
v1
/
characters
/
:slug
Get Character
curl --request GET \
  --url https://api.charactergateway.com/v1/characters/:slug \
  --header 'authorization: <authorization>'
{
  "slug": "",
  "data": {},
  "tags": [],
  "type": "character",
  "is_draft": false,
  "is_public": false,
  "is_verified": false,
  "is_nsfw": false,
  "n_interactions": 0,
  "created_at": "2025-04-06T07:24:39.875Z",
  "updated_at": "2025-04-06T07:24:39.875Z"
}

Headers

authorization
string
required

API key for authentication

Example:

"Bearer sk-..."

Path Parameters

slug
string
required

The unique slug identifier for the character

Example:

"c:kate"

Response

Character details successfully retrieved

slug
string
default:""

Unique identifier for the character

data
object

Character data containing details and configurations

tags
string[]

Tags associated with the character

type
string
default:character

Type of the entity, typically 'character'

is_draft
boolean
default:false

Whether the character is in draft status

is_public
boolean
default:false

Whether the character is publicly available

is_verified
boolean
default:false

Whether the character has been verified

is_nsfw
boolean
default:false

Whether the character contains mature content

n_interactions
number | null
default:0

Number of interactions with the character

created_at
string
default:2025-04-06T07:24:39.875Z

When the character was created

updated_at
string
default:2025-04-06T07:24:39.875Z

When the character was last updated