Create an API key for a client (Admin only)
curl --request POST \
--url https://api.platform.dakota.xyz/api-keys/admin \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--header 'x-idempotency-key: <x-idempotency-key>' \
--data '
{
"client_id": "2iNhTbFZGo1bqoTTVOQKVgAfGHH"
}
'const options = {
method: 'POST',
headers: {
'x-idempotency-key': '<x-idempotency-key>',
'x-api-key': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({client_id: '2iNhTbFZGo1bqoTTVOQKVgAfGHH'})
};
fetch('https://api.platform.dakota.xyz/api-keys/admin', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.platform.dakota.xyz/api-keys/admin"
payload = { "client_id": "2iNhTbFZGo1bqoTTVOQKVgAfGHH" }
headers = {
"x-idempotency-key": "<x-idempotency-key>",
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.platform.dakota.xyz/api-keys/admin"
payload := strings.NewReader("{\n \"client_id\": \"2iNhTbFZGo1bqoTTVOQKVgAfGHH\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-idempotency-key", "<x-idempotency-key>")
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"id": "2iNhTbFZGo1bqoTTVOQKVgAfGHH",
"key": "dk_live_4KLkSmzQbL6Xs8xnUjssdGHX7PfhHpAb"
}{
"type": "https://docs.dakota.xyz/api-reference/errors#invalid-request",
"title": "Invalid request",
"status": 400,
"detail": "Invalid client_id format",
"instance": "https://api.platform.dakota.xyz/api-keys/admin",
"request_id": "req_01hzy6y7v8w9x0y1z2a3b4c5d6"
}{
"type": "https://docs.dakota.xyz/api-reference/errors#unauthorized",
"title": "Unauthorized",
"status": 401,
"detail": "Unauthorized",
"instance": "https://api.platform.dakota.xyz/api-keys/admin",
"request_id": "req_01hzy6y7v8w9x0y1z2a3b4c5d6"
}{
"type": "https://docs.dakota.xyz/api-reference/errors#forbidden",
"title": "Forbidden",
"status": 403,
"detail": "This endpoint requires admin access token",
"instance": "https://api.platform.dakota.xyz/api-keys/admin",
"request_id": "req_01hzy6y7v8w9x0y1z2a3b4c5d6"
}{
"type": "https://docs.dakota.xyz/api-reference/errors#service-unavailable",
"title": "Service Unavailable",
"status": 503,
"detail": "This endpoint is only available in sandbox environment",
"instance": "https://api.platform.dakota.xyz/api-keys/admin",
"request_id": "req_01hzy6y7v8w9x0y1z2a3b4c5d6"
}Authentication
Create an API key for a client (Admin only)
Create an API key for a specified client. Requires admin access token.
POST
/
api-keys
/
admin
Create an API key for a client (Admin only)
curl --request POST \
--url https://api.platform.dakota.xyz/api-keys/admin \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--header 'x-idempotency-key: <x-idempotency-key>' \
--data '
{
"client_id": "2iNhTbFZGo1bqoTTVOQKVgAfGHH"
}
'const options = {
method: 'POST',
headers: {
'x-idempotency-key': '<x-idempotency-key>',
'x-api-key': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({client_id: '2iNhTbFZGo1bqoTTVOQKVgAfGHH'})
};
fetch('https://api.platform.dakota.xyz/api-keys/admin', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.platform.dakota.xyz/api-keys/admin"
payload = { "client_id": "2iNhTbFZGo1bqoTTVOQKVgAfGHH" }
headers = {
"x-idempotency-key": "<x-idempotency-key>",
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.platform.dakota.xyz/api-keys/admin"
payload := strings.NewReader("{\n \"client_id\": \"2iNhTbFZGo1bqoTTVOQKVgAfGHH\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-idempotency-key", "<x-idempotency-key>")
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"id": "2iNhTbFZGo1bqoTTVOQKVgAfGHH",
"key": "dk_live_4KLkSmzQbL6Xs8xnUjssdGHX7PfhHpAb"
}{
"type": "https://docs.dakota.xyz/api-reference/errors#invalid-request",
"title": "Invalid request",
"status": 400,
"detail": "Invalid client_id format",
"instance": "https://api.platform.dakota.xyz/api-keys/admin",
"request_id": "req_01hzy6y7v8w9x0y1z2a3b4c5d6"
}{
"type": "https://docs.dakota.xyz/api-reference/errors#unauthorized",
"title": "Unauthorized",
"status": 401,
"detail": "Unauthorized",
"instance": "https://api.platform.dakota.xyz/api-keys/admin",
"request_id": "req_01hzy6y7v8w9x0y1z2a3b4c5d6"
}{
"type": "https://docs.dakota.xyz/api-reference/errors#forbidden",
"title": "Forbidden",
"status": 403,
"detail": "This endpoint requires admin access token",
"instance": "https://api.platform.dakota.xyz/api-keys/admin",
"request_id": "req_01hzy6y7v8w9x0y1z2a3b4c5d6"
}{
"type": "https://docs.dakota.xyz/api-reference/errors#service-unavailable",
"title": "Service Unavailable",
"status": 503,
"detail": "This endpoint is only available in sandbox environment",
"instance": "https://api.platform.dakota.xyz/api-keys/admin",
"request_id": "req_01hzy6y7v8w9x0y1z2a3b4c5d6"
}Authorizations
Headers
Unique key to ensure request idempotency. If the same key is used within a certain time window, the original response will be returned instead of executing the request again.
Body
application/json
Client ID to create the API key for
Required string length:
27Pattern:
^[0-9A-Za-z]{27}$Example:
"1NFHrqBHb3cTfLVkFSGmHZqdDPi"
Response
API key created successfully
KSUID is a 27-character globally unique ID that combines a timestamp with a random component. Used for all entity identifiers in the Dakota platform.
Required string length:
27Pattern:
^[0-9A-Za-z]{27}$Example:
"1NFHrqBHb3cTfLVkFSGmHZqdDPi"
The API key value (only shown once at creation)
Example:
"dk_live_4KLkSmzQbL6Xs8xnUjssdGHX7PfhHpAb"
Was this page helpful?

