Upload Image
curl --request POST \
--url https://inkypump.com/api/upload \
--header 'Content-Type: application/json' \
--data '
{
"turnstileToken": "<string>",
"walletAddress": "<string>",
"socialCreatorProof": true
}
'import requests
url = "https://inkypump.com/api/upload"
payload = {
"turnstileToken": "<string>",
"walletAddress": "<string>",
"socialCreatorProof": True
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
turnstileToken: '<string>',
walletAddress: '<string>',
socialCreatorProof: true
})
};
fetch('https://inkypump.com/api/upload', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://inkypump.com/api/upload",
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([
'turnstileToken' => '<string>',
'walletAddress' => '<string>',
'socialCreatorProof' => true
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$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://inkypump.com/api/upload"
payload := strings.NewReader("{\n \"turnstileToken\": \"<string>\",\n \"walletAddress\": \"<string>\",\n \"socialCreatorProof\": true\n}")
req, _ := http.NewRequest("POST", url, payload)
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://inkypump.com/api/upload")
.header("Content-Type", "application/json")
.body("{\n \"turnstileToken\": \"<string>\",\n \"walletAddress\": \"<string>\",\n \"socialCreatorProof\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://inkypump.com/api/upload")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"turnstileToken\": \"<string>\",\n \"walletAddress\": \"<string>\",\n \"socialCreatorProof\": true\n}"
response = http.request(request)
puts response.read_bodyInkyPump API
Upload Image
First-party InkyPump image upload with Turnstile and wallet rate controls.
POST
/
api
/
upload
Upload Image
curl --request POST \
--url https://inkypump.com/api/upload \
--header 'Content-Type: application/json' \
--data '
{
"turnstileToken": "<string>",
"walletAddress": "<string>",
"socialCreatorProof": true
}
'import requests
url = "https://inkypump.com/api/upload"
payload = {
"turnstileToken": "<string>",
"walletAddress": "<string>",
"socialCreatorProof": True
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
turnstileToken: '<string>',
walletAddress: '<string>',
socialCreatorProof: true
})
};
fetch('https://inkypump.com/api/upload', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://inkypump.com/api/upload",
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([
'turnstileToken' => '<string>',
'walletAddress' => '<string>',
'socialCreatorProof' => true
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$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://inkypump.com/api/upload"
payload := strings.NewReader("{\n \"turnstileToken\": \"<string>\",\n \"walletAddress\": \"<string>\",\n \"socialCreatorProof\": true\n}")
req, _ := http.NewRequest("POST", url, payload)
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://inkypump.com/api/upload")
.header("Content-Type", "application/json")
.body("{\n \"turnstileToken\": \"<string>\",\n \"walletAddress\": \"<string>\",\n \"socialCreatorProof\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://inkypump.com/api/upload")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"turnstileToken\": \"<string>\",\n \"walletAddress\": \"<string>\",\n \"socialCreatorProof\": true\n}"
response = http.request(request)
puts response.read_bodyThis is the upload path used by the InkyPump interface. It is not an open partner-storage API.
The response also reports the selected storage path in
Form data
file
required
Valid image file, up to 5 MiB under the current allowlist.
string
required
Fresh Cloudflare Turnstile token. Tokens are single-use and expire.
string
required
Wallet context used for rate control.
boolean
First-party social-creator flow flag.
Response
{
"url": "https://images.inkypump.com/original/...",
"socialHumanProof": null
}
X-InkyPump-Image-Storage.
Partner recommendation
Store the image in your own durable public HTTPS object storage, then pass that URL inCreateLaunchParams.imageUrl. Make it immutable or content-addressed, set a long cache lifetime, and keep it publicly readable.
Contact InkyPump if you need first-party upload support for a partner origin. Do not reuse InkyPump’s Turnstile site flow or spoof its origin.
Limits and errors
The current route applies progressive IP limits and a wallet limit of three uploads per minute. It can return400, 403, 429, or 500. A timeout-or-duplicate Turnstile result tells the client to request a new proof.