cURL
curl -X POST "https://api.pikzels.com/v2/pikzonality/persona" \
-H "X-Api-Key: pkz_yourapikey" \
-H "Content-Type: application/json" \
--data-raw '{
"name": "Creator Studio",
"image_urls": [
"https://cdn.pikzels.com/example.png",
"https://cdn.pikzels.com/example.png",
"https://cdn.pikzels.com/example.png"
]
}'import requests
url = "https://api.pikzels.com/v2/pikzonality/persona"
headers = {
"X-Api-Key": "pkz_yourapikey",
"Content-Type": "application/json",
}
payload = {
"name": "Creator Studio",
"image_urls": [
"https://cdn.pikzels.com/example.png",
"https://cdn.pikzels.com/example.png",
"https://cdn.pikzels.com/example.png"
]
}
response = requests.post(url, headers=headers, json=payload)
print(response.json())const url = "https://api.pikzels.com/v2/pikzonality/persona";
const body = {
"name": "Creator Studio",
"image_urls": [
"https://cdn.pikzels.com/example.png",
"https://cdn.pikzels.com/example.png",
"https://cdn.pikzels.com/example.png"
]
};
const options = {
method: "POST",
headers: {
"X-Api-Key": "pkz_yourapikey",
"Content-Type": "application/json",
},
body: JSON.stringify(body),
};
const response = await fetch(url, options);
const data = await response.json();
console.log(data);<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.pikzels.com/v2/pikzonality/persona",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'name' => 'Creator Studio',
'image_urls' => [
'https://cdn.pikzels.com/example.png',
'https://cdn.pikzels.com/example.png',
'https://cdn.pikzels.com/example.png'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-Api-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.pikzels.com/v2/pikzonality/persona"
payload := strings.NewReader("{\n \"name\": \"Creator Studio\",\n \"image_urls\": [\n \"https://cdn.pikzels.com/example.png\",\n \"https://cdn.pikzels.com/example.png\",\n \"https://cdn.pikzels.com/example.png\"\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
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))
}HttpResponse<String> response = Unirest.post("https://api.pikzels.com/v2/pikzonality/persona")
.header("X-Api-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"Creator Studio\",\n \"image_urls\": [\n \"https://cdn.pikzels.com/example.png\",\n \"https://cdn.pikzels.com/example.png\",\n \"https://cdn.pikzels.com/example.png\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.pikzels.com/v2/pikzonality/persona")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-Api-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"Creator Studio\",\n \"image_urls\": [\n \"https://cdn.pikzels.com/example.png\",\n \"https://cdn.pikzels.com/example.png\",\n \"https://cdn.pikzels.com/example.png\"\n ]\n}"
response = http.request(request)
puts response.read_body{
"id": "18b2ad5e-2a9e-4d3f-b9a8-9f2a1e0b1234",
"request_id": "18b2ad5e-2a9e-4d3f-b9a8-9f2a1e0b1234"
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "<string>"
},
"request_id": "<string>"
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "<string>"
},
"request_id": "<string>"
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "<string>"
},
"request_id": "<string>"
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "<string>"
},
"request_id": "<string>"
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "<string>"
},
"request_id": "<string>"
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "<string>"
},
"request_id": "<string>"
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "<string>"
},
"request_id": "<string>"
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "<string>"
},
"request_id": "<string>"
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "<string>"
},
"request_id": "<string>"
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "<string>"
},
"request_id": "<string>"
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "<string>"
},
"request_id": "<string>"
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "<string>"
},
"request_id": "<string>"
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "<string>"
},
"request_id": "<string>"
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "<string>"
},
"request_id": "<string>"
}Pikzonalities
Create persona
Create a persona and receive its ID.
POST
/
v2
/
pikzonality
/
persona
cURL
curl -X POST "https://api.pikzels.com/v2/pikzonality/persona" \
-H "X-Api-Key: pkz_yourapikey" \
-H "Content-Type: application/json" \
--data-raw '{
"name": "Creator Studio",
"image_urls": [
"https://cdn.pikzels.com/example.png",
"https://cdn.pikzels.com/example.png",
"https://cdn.pikzels.com/example.png"
]
}'import requests
url = "https://api.pikzels.com/v2/pikzonality/persona"
headers = {
"X-Api-Key": "pkz_yourapikey",
"Content-Type": "application/json",
}
payload = {
"name": "Creator Studio",
"image_urls": [
"https://cdn.pikzels.com/example.png",
"https://cdn.pikzels.com/example.png",
"https://cdn.pikzels.com/example.png"
]
}
response = requests.post(url, headers=headers, json=payload)
print(response.json())const url = "https://api.pikzels.com/v2/pikzonality/persona";
const body = {
"name": "Creator Studio",
"image_urls": [
"https://cdn.pikzels.com/example.png",
"https://cdn.pikzels.com/example.png",
"https://cdn.pikzels.com/example.png"
]
};
const options = {
method: "POST",
headers: {
"X-Api-Key": "pkz_yourapikey",
"Content-Type": "application/json",
},
body: JSON.stringify(body),
};
const response = await fetch(url, options);
const data = await response.json();
console.log(data);<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.pikzels.com/v2/pikzonality/persona",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'name' => 'Creator Studio',
'image_urls' => [
'https://cdn.pikzels.com/example.png',
'https://cdn.pikzels.com/example.png',
'https://cdn.pikzels.com/example.png'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-Api-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.pikzels.com/v2/pikzonality/persona"
payload := strings.NewReader("{\n \"name\": \"Creator Studio\",\n \"image_urls\": [\n \"https://cdn.pikzels.com/example.png\",\n \"https://cdn.pikzels.com/example.png\",\n \"https://cdn.pikzels.com/example.png\"\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
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))
}HttpResponse<String> response = Unirest.post("https://api.pikzels.com/v2/pikzonality/persona")
.header("X-Api-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"Creator Studio\",\n \"image_urls\": [\n \"https://cdn.pikzels.com/example.png\",\n \"https://cdn.pikzels.com/example.png\",\n \"https://cdn.pikzels.com/example.png\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.pikzels.com/v2/pikzonality/persona")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-Api-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"Creator Studio\",\n \"image_urls\": [\n \"https://cdn.pikzels.com/example.png\",\n \"https://cdn.pikzels.com/example.png\",\n \"https://cdn.pikzels.com/example.png\"\n ]\n}"
response = http.request(request)
puts response.read_body{
"id": "18b2ad5e-2a9e-4d3f-b9a8-9f2a1e0b1234",
"request_id": "18b2ad5e-2a9e-4d3f-b9a8-9f2a1e0b1234"
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "<string>"
},
"request_id": "<string>"
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "<string>"
},
"request_id": "<string>"
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "<string>"
},
"request_id": "<string>"
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "<string>"
},
"request_id": "<string>"
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "<string>"
},
"request_id": "<string>"
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "<string>"
},
"request_id": "<string>"
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "<string>"
},
"request_id": "<string>"
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "<string>"
},
"request_id": "<string>"
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "<string>"
},
"request_id": "<string>"
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "<string>"
},
"request_id": "<string>"
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "<string>"
},
"request_id": "<string>"
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "<string>"
},
"request_id": "<string>"
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "<string>"
},
"request_id": "<string>"
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "<string>"
},
"request_id": "<string>"
}Authorizations
Your Pikzels API key (prefix: pkz_)
Body
application/json
- Option 1
- Option 2
3 face image HTTPS URLs -- provide this or image_base64s
Required array length:
3 elementsPattern:
^https://\S+$Letters, numbers, spaces, hyphens, and underscores only
Required string length:
1 - 25Pattern:
^[a-zA-Z0-9\s\-_]+$3 face images as base64 data URLs -- provide this or image_urls
Required array length:
3 elementsPattern:
^data:image/[a-zA-Z0-9.+-]+;base64,⌘I
