curl --request POST \
--url 'https://api.sandbox.stateset.app/api/v1/api-keys' \
--header "Authorization: Bearer $STATESET_SANDBOX_API_KEY" \
--header 'Content-Type: application/json' \
--data '{
"name": "Two-Person Tent",
"scopes": [
"sandbox:create"
],
"expires_in_days": 1
}'
{
"api_key": {
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "Two-Person Tent",
"key_prefix": "string",
"scopes": [
"string"
],
"last_used_at": "2026-08-31T14:22:05Z",
"expires_at": "2026-08-31T14:22:05Z",
"created_at": "2026-08-31T14:22:05Z"
},
"key": "string"
}
Create a new API key
API key created. key is the full plaintext key, returned only once.
POST
/
api
/
v1
/
api-keys
curl --request POST \
--url 'https://api.sandbox.stateset.app/api/v1/api-keys' \
--header "Authorization: Bearer $STATESET_SANDBOX_API_KEY" \
--header 'Content-Type: application/json' \
--data '{
"name": "Two-Person Tent",
"scopes": [
"sandbox:create"
],
"expires_in_days": 1
}'
{
"api_key": {
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "Two-Person Tent",
"key_prefix": "string",
"scopes": [
"string"
],
"last_used_at": "2026-08-31T14:22:05Z",
"expires_at": "2026-08-31T14:22:05Z",
"created_at": "2026-08-31T14:22:05Z"
},
"key": "string"
}
Request body
CreateApiKeyRequest
string
required
string[]
integer
Response
object
object
required
string
required
Full plaintext API key; shown only in this response
Status codes
| Code | Meaning |
|---|---|
201 | API key created. key is the full plaintext key, returned only once. |
400 | Invalid request |
curl --request POST \
--url 'https://api.sandbox.stateset.app/api/v1/api-keys' \
--header "Authorization: Bearer $STATESET_SANDBOX_API_KEY" \
--header 'Content-Type: application/json' \
--data '{
"name": "Two-Person Tent",
"scopes": [
"sandbox:create"
],
"expires_in_days": 1
}'
{
"api_key": {
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "Two-Person Tent",
"key_prefix": "string",
"scopes": [
"string"
],
"last_used_at": "2026-08-31T14:22:05Z",
"expires_at": "2026-08-31T14:22:05Z",
"created_at": "2026-08-31T14:22:05Z"
},
"key": "string"
}
Last modified on August 31, 2026