curl --request POST \
--url https://api.iotools.cloud/v1/tool/css-aurora-blob-generator \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"ioBaseColor": "<string>",
"ioBlur": 75,
"ioBlob1Color": "<string>",
"ioBlob1X": 50,
"ioBlob1Y": 50,
"ioBlob1Size": 80,
"ioBlob2Color": "<string>",
"ioBlob2X": 50,
"ioBlob2Y": 50,
"ioBlob2Size": 80,
"ioBlob3Color": "<string>",
"ioBlob3X": 50,
"ioBlob3Y": 50,
"ioBlob3Size": 80,
"ioBlob4Color": "<string>",
"ioBlob4X": 50,
"ioBlob4Y": 50,
"ioBlob4Size": 80,
"ioBlob5Color": "<string>",
"ioBlob5X": 50,
"ioBlob5Y": 50,
"ioBlob5Size": 80,
"ioAnimate": true,
"ioAnimationDuration": 32.5
}
'import requests
url = "https://api.iotools.cloud/v1/tool/css-aurora-blob-generator"
payload = {
"ioBaseColor": "<string>",
"ioBlur": 75,
"ioBlob1Color": "<string>",
"ioBlob1X": 50,
"ioBlob1Y": 50,
"ioBlob1Size": 80,
"ioBlob2Color": "<string>",
"ioBlob2X": 50,
"ioBlob2Y": 50,
"ioBlob2Size": 80,
"ioBlob3Color": "<string>",
"ioBlob3X": 50,
"ioBlob3Y": 50,
"ioBlob3Size": 80,
"ioBlob4Color": "<string>",
"ioBlob4X": 50,
"ioBlob4Y": 50,
"ioBlob4Size": 80,
"ioBlob5Color": "<string>",
"ioBlob5X": 50,
"ioBlob5Y": 50,
"ioBlob5Size": 80,
"ioAnimate": True,
"ioAnimationDuration": 32.5
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
ioBaseColor: '<string>',
ioBlur: 75,
ioBlob1Color: '<string>',
ioBlob1X: 50,
ioBlob1Y: 50,
ioBlob1Size: 80,
ioBlob2Color: '<string>',
ioBlob2X: 50,
ioBlob2Y: 50,
ioBlob2Size: 80,
ioBlob3Color: '<string>',
ioBlob3X: 50,
ioBlob3Y: 50,
ioBlob3Size: 80,
ioBlob4Color: '<string>',
ioBlob4X: 50,
ioBlob4Y: 50,
ioBlob4Size: 80,
ioBlob5Color: '<string>',
ioBlob5X: 50,
ioBlob5Y: 50,
ioBlob5Size: 80,
ioAnimate: true,
ioAnimationDuration: 32.5
})
};
fetch('https://api.iotools.cloud/v1/tool/css-aurora-blob-generator', 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://api.iotools.cloud/v1/tool/css-aurora-blob-generator",
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([
'ioBaseColor' => '<string>',
'ioBlur' => 75,
'ioBlob1Color' => '<string>',
'ioBlob1X' => 50,
'ioBlob1Y' => 50,
'ioBlob1Size' => 80,
'ioBlob2Color' => '<string>',
'ioBlob2X' => 50,
'ioBlob2Y' => 50,
'ioBlob2Size' => 80,
'ioBlob3Color' => '<string>',
'ioBlob3X' => 50,
'ioBlob3Y' => 50,
'ioBlob3Size' => 80,
'ioBlob4Color' => '<string>',
'ioBlob4X' => 50,
'ioBlob4Y' => 50,
'ioBlob4Size' => 80,
'ioBlob5Color' => '<string>',
'ioBlob5X' => 50,
'ioBlob5Y' => 50,
'ioBlob5Size' => 80,
'ioAnimate' => true,
'ioAnimationDuration' => 32.5
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"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://api.iotools.cloud/v1/tool/css-aurora-blob-generator"
payload := strings.NewReader("{\n \"ioBaseColor\": \"<string>\",\n \"ioBlur\": 75,\n \"ioBlob1Color\": \"<string>\",\n \"ioBlob1X\": 50,\n \"ioBlob1Y\": 50,\n \"ioBlob1Size\": 80,\n \"ioBlob2Color\": \"<string>\",\n \"ioBlob2X\": 50,\n \"ioBlob2Y\": 50,\n \"ioBlob2Size\": 80,\n \"ioBlob3Color\": \"<string>\",\n \"ioBlob3X\": 50,\n \"ioBlob3Y\": 50,\n \"ioBlob3Size\": 80,\n \"ioBlob4Color\": \"<string>\",\n \"ioBlob4X\": 50,\n \"ioBlob4Y\": 50,\n \"ioBlob4Size\": 80,\n \"ioBlob5Color\": \"<string>\",\n \"ioBlob5X\": 50,\n \"ioBlob5Y\": 50,\n \"ioBlob5Size\": 80,\n \"ioAnimate\": true,\n \"ioAnimationDuration\": 32.5\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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.iotools.cloud/v1/tool/css-aurora-blob-generator")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"ioBaseColor\": \"<string>\",\n \"ioBlur\": 75,\n \"ioBlob1Color\": \"<string>\",\n \"ioBlob1X\": 50,\n \"ioBlob1Y\": 50,\n \"ioBlob1Size\": 80,\n \"ioBlob2Color\": \"<string>\",\n \"ioBlob2X\": 50,\n \"ioBlob2Y\": 50,\n \"ioBlob2Size\": 80,\n \"ioBlob3Color\": \"<string>\",\n \"ioBlob3X\": 50,\n \"ioBlob3Y\": 50,\n \"ioBlob3Size\": 80,\n \"ioBlob4Color\": \"<string>\",\n \"ioBlob4X\": 50,\n \"ioBlob4Y\": 50,\n \"ioBlob4Size\": 80,\n \"ioBlob5Color\": \"<string>\",\n \"ioBlob5X\": 50,\n \"ioBlob5Y\": 50,\n \"ioBlob5Size\": 80,\n \"ioAnimate\": true,\n \"ioAnimationDuration\": 32.5\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.iotools.cloud/v1/tool/css-aurora-blob-generator")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"ioBaseColor\": \"<string>\",\n \"ioBlur\": 75,\n \"ioBlob1Color\": \"<string>\",\n \"ioBlob1X\": 50,\n \"ioBlob1Y\": 50,\n \"ioBlob1Size\": 80,\n \"ioBlob2Color\": \"<string>\",\n \"ioBlob2X\": 50,\n \"ioBlob2Y\": 50,\n \"ioBlob2Size\": 80,\n \"ioBlob3Color\": \"<string>\",\n \"ioBlob3X\": 50,\n \"ioBlob3Y\": 50,\n \"ioBlob3Size\": 80,\n \"ioBlob4Color\": \"<string>\",\n \"ioBlob4X\": 50,\n \"ioBlob4Y\": 50,\n \"ioBlob4Size\": 80,\n \"ioBlob5Color\": \"<string>\",\n \"ioBlob5X\": 50,\n \"ioBlob5Y\": 50,\n \"ioBlob5Size\": 80,\n \"ioAnimate\": true,\n \"ioAnimationDuration\": 32.5\n}"
response = http.request(request)
puts response.read_body{
"tool": "<string>",
"tool_version": "<string>",
"outputs": {
"ioCssCode": "<string>",
"ioPreviewHtml": "<string>"
},
"credits_used": 123,
"request_id": "<string>",
"credits_remaining": 123
}{
"type": "https://iotools.cloud/docs/errors/validation_error",
"title": "Invalid request",
"status": 400,
"code": "validation_error",
"detail": "One or more inputs are invalid — see `fields`.",
"request_id": "e4042b29-8f1e-4c7a-9b52-6f0d1a3c7e11"
}{
"type": "https://iotools.cloud/docs/errors/invalid_api_key",
"title": "Invalid API key",
"status": 401,
"code": "invalid_api_key",
"detail": "Provide 'Authorization: Bearer <key>'.",
"request_id": "e4042b29-8f1e-4c7a-9b52-6f0d1a3c7e11"
}{
"type": "https://iotools.cloud/docs/errors/insufficient_credits",
"title": "Insufficient credits",
"status": 402,
"code": "insufficient_credits",
"detail": "This call costs 1 credit and 0 remain in this month's allowance.",
"request_id": "e4042b29-8f1e-4c7a-9b52-6f0d1a3c7e11"
}{
"type": "https://iotools.cloud/docs/errors/tool_not_allowed",
"title": "Tool not available over the API",
"status": 403,
"code": "tool_not_allowed",
"detail": "\"Background Remover\" is available on iotools.cloud but has no API endpoint.",
"request_id": "e4042b29-8f1e-4c7a-9b52-6f0d1a3c7e11"
}{
"type": "https://iotools.cloud/docs/errors/tool_not_found",
"title": "Tool not found",
"status": 404,
"code": "tool_not_found",
"detail": "No tool with that slug. See GET /v1/tools.",
"request_id": "e4042b29-8f1e-4c7a-9b52-6f0d1a3c7e11"
}{
"type": "https://iotools.cloud/docs/errors/payload_too_large",
"title": "Payload too large",
"status": 413,
"code": "payload_too_large",
"detail": "Request body exceeds this tool's size limit.",
"request_id": "e4042b29-8f1e-4c7a-9b52-6f0d1a3c7e11"
}{
"type": "https://iotools.cloud/docs/errors/rate_limited",
"title": "Rate limit exceeded",
"status": 429,
"code": "rate_limited",
"detail": "Too many requests. Retry in 30s.",
"request_id": "e4042b29-8f1e-4c7a-9b52-6f0d1a3c7e11"
}{
"type": "https://iotools.cloud/docs/errors/processing_error",
"title": "Tool failed to run",
"status": 500,
"code": "processing_error",
"detail": "The tool failed to run. Please try again.",
"request_id": "e4042b29-8f1e-4c7a-9b52-6f0d1a3c7e11"
}{
"type": "https://iotools.cloud/docs/errors/tool_disabled",
"title": "Tool temporarily disabled",
"status": 503,
"code": "tool_disabled",
"detail": "This tool is temporarily unavailable. Try again shortly.",
"request_id": "e4042b29-8f1e-4c7a-9b52-6f0d1a3c7e11"
}Aurora / Gradient Blob CSS Background Generator
Generate a soft, blurred ‘aurora’ CSS background from 2-5 colored radial-gradient blobs, with adjustable blur, positions and sizes, plus an optional drifting @keyframes animation. Copy the CSS or preview it live.
Try Aurora / Gradient Blob CSS Background Generator in your browser →
curl --request POST \
--url https://api.iotools.cloud/v1/tool/css-aurora-blob-generator \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"ioBaseColor": "<string>",
"ioBlur": 75,
"ioBlob1Color": "<string>",
"ioBlob1X": 50,
"ioBlob1Y": 50,
"ioBlob1Size": 80,
"ioBlob2Color": "<string>",
"ioBlob2X": 50,
"ioBlob2Y": 50,
"ioBlob2Size": 80,
"ioBlob3Color": "<string>",
"ioBlob3X": 50,
"ioBlob3Y": 50,
"ioBlob3Size": 80,
"ioBlob4Color": "<string>",
"ioBlob4X": 50,
"ioBlob4Y": 50,
"ioBlob4Size": 80,
"ioBlob5Color": "<string>",
"ioBlob5X": 50,
"ioBlob5Y": 50,
"ioBlob5Size": 80,
"ioAnimate": true,
"ioAnimationDuration": 32.5
}
'import requests
url = "https://api.iotools.cloud/v1/tool/css-aurora-blob-generator"
payload = {
"ioBaseColor": "<string>",
"ioBlur": 75,
"ioBlob1Color": "<string>",
"ioBlob1X": 50,
"ioBlob1Y": 50,
"ioBlob1Size": 80,
"ioBlob2Color": "<string>",
"ioBlob2X": 50,
"ioBlob2Y": 50,
"ioBlob2Size": 80,
"ioBlob3Color": "<string>",
"ioBlob3X": 50,
"ioBlob3Y": 50,
"ioBlob3Size": 80,
"ioBlob4Color": "<string>",
"ioBlob4X": 50,
"ioBlob4Y": 50,
"ioBlob4Size": 80,
"ioBlob5Color": "<string>",
"ioBlob5X": 50,
"ioBlob5Y": 50,
"ioBlob5Size": 80,
"ioAnimate": True,
"ioAnimationDuration": 32.5
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
ioBaseColor: '<string>',
ioBlur: 75,
ioBlob1Color: '<string>',
ioBlob1X: 50,
ioBlob1Y: 50,
ioBlob1Size: 80,
ioBlob2Color: '<string>',
ioBlob2X: 50,
ioBlob2Y: 50,
ioBlob2Size: 80,
ioBlob3Color: '<string>',
ioBlob3X: 50,
ioBlob3Y: 50,
ioBlob3Size: 80,
ioBlob4Color: '<string>',
ioBlob4X: 50,
ioBlob4Y: 50,
ioBlob4Size: 80,
ioBlob5Color: '<string>',
ioBlob5X: 50,
ioBlob5Y: 50,
ioBlob5Size: 80,
ioAnimate: true,
ioAnimationDuration: 32.5
})
};
fetch('https://api.iotools.cloud/v1/tool/css-aurora-blob-generator', 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://api.iotools.cloud/v1/tool/css-aurora-blob-generator",
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([
'ioBaseColor' => '<string>',
'ioBlur' => 75,
'ioBlob1Color' => '<string>',
'ioBlob1X' => 50,
'ioBlob1Y' => 50,
'ioBlob1Size' => 80,
'ioBlob2Color' => '<string>',
'ioBlob2X' => 50,
'ioBlob2Y' => 50,
'ioBlob2Size' => 80,
'ioBlob3Color' => '<string>',
'ioBlob3X' => 50,
'ioBlob3Y' => 50,
'ioBlob3Size' => 80,
'ioBlob4Color' => '<string>',
'ioBlob4X' => 50,
'ioBlob4Y' => 50,
'ioBlob4Size' => 80,
'ioBlob5Color' => '<string>',
'ioBlob5X' => 50,
'ioBlob5Y' => 50,
'ioBlob5Size' => 80,
'ioAnimate' => true,
'ioAnimationDuration' => 32.5
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"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://api.iotools.cloud/v1/tool/css-aurora-blob-generator"
payload := strings.NewReader("{\n \"ioBaseColor\": \"<string>\",\n \"ioBlur\": 75,\n \"ioBlob1Color\": \"<string>\",\n \"ioBlob1X\": 50,\n \"ioBlob1Y\": 50,\n \"ioBlob1Size\": 80,\n \"ioBlob2Color\": \"<string>\",\n \"ioBlob2X\": 50,\n \"ioBlob2Y\": 50,\n \"ioBlob2Size\": 80,\n \"ioBlob3Color\": \"<string>\",\n \"ioBlob3X\": 50,\n \"ioBlob3Y\": 50,\n \"ioBlob3Size\": 80,\n \"ioBlob4Color\": \"<string>\",\n \"ioBlob4X\": 50,\n \"ioBlob4Y\": 50,\n \"ioBlob4Size\": 80,\n \"ioBlob5Color\": \"<string>\",\n \"ioBlob5X\": 50,\n \"ioBlob5Y\": 50,\n \"ioBlob5Size\": 80,\n \"ioAnimate\": true,\n \"ioAnimationDuration\": 32.5\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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.iotools.cloud/v1/tool/css-aurora-blob-generator")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"ioBaseColor\": \"<string>\",\n \"ioBlur\": 75,\n \"ioBlob1Color\": \"<string>\",\n \"ioBlob1X\": 50,\n \"ioBlob1Y\": 50,\n \"ioBlob1Size\": 80,\n \"ioBlob2Color\": \"<string>\",\n \"ioBlob2X\": 50,\n \"ioBlob2Y\": 50,\n \"ioBlob2Size\": 80,\n \"ioBlob3Color\": \"<string>\",\n \"ioBlob3X\": 50,\n \"ioBlob3Y\": 50,\n \"ioBlob3Size\": 80,\n \"ioBlob4Color\": \"<string>\",\n \"ioBlob4X\": 50,\n \"ioBlob4Y\": 50,\n \"ioBlob4Size\": 80,\n \"ioBlob5Color\": \"<string>\",\n \"ioBlob5X\": 50,\n \"ioBlob5Y\": 50,\n \"ioBlob5Size\": 80,\n \"ioAnimate\": true,\n \"ioAnimationDuration\": 32.5\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.iotools.cloud/v1/tool/css-aurora-blob-generator")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"ioBaseColor\": \"<string>\",\n \"ioBlur\": 75,\n \"ioBlob1Color\": \"<string>\",\n \"ioBlob1X\": 50,\n \"ioBlob1Y\": 50,\n \"ioBlob1Size\": 80,\n \"ioBlob2Color\": \"<string>\",\n \"ioBlob2X\": 50,\n \"ioBlob2Y\": 50,\n \"ioBlob2Size\": 80,\n \"ioBlob3Color\": \"<string>\",\n \"ioBlob3X\": 50,\n \"ioBlob3Y\": 50,\n \"ioBlob3Size\": 80,\n \"ioBlob4Color\": \"<string>\",\n \"ioBlob4X\": 50,\n \"ioBlob4Y\": 50,\n \"ioBlob4Size\": 80,\n \"ioBlob5Color\": \"<string>\",\n \"ioBlob5X\": 50,\n \"ioBlob5Y\": 50,\n \"ioBlob5Size\": 80,\n \"ioAnimate\": true,\n \"ioAnimationDuration\": 32.5\n}"
response = http.request(request)
puts response.read_body{
"tool": "<string>",
"tool_version": "<string>",
"outputs": {
"ioCssCode": "<string>",
"ioPreviewHtml": "<string>"
},
"credits_used": 123,
"request_id": "<string>",
"credits_remaining": 123
}{
"type": "https://iotools.cloud/docs/errors/validation_error",
"title": "Invalid request",
"status": 400,
"code": "validation_error",
"detail": "One or more inputs are invalid — see `fields`.",
"request_id": "e4042b29-8f1e-4c7a-9b52-6f0d1a3c7e11"
}{
"type": "https://iotools.cloud/docs/errors/invalid_api_key",
"title": "Invalid API key",
"status": 401,
"code": "invalid_api_key",
"detail": "Provide 'Authorization: Bearer <key>'.",
"request_id": "e4042b29-8f1e-4c7a-9b52-6f0d1a3c7e11"
}{
"type": "https://iotools.cloud/docs/errors/insufficient_credits",
"title": "Insufficient credits",
"status": 402,
"code": "insufficient_credits",
"detail": "This call costs 1 credit and 0 remain in this month's allowance.",
"request_id": "e4042b29-8f1e-4c7a-9b52-6f0d1a3c7e11"
}{
"type": "https://iotools.cloud/docs/errors/tool_not_allowed",
"title": "Tool not available over the API",
"status": 403,
"code": "tool_not_allowed",
"detail": "\"Background Remover\" is available on iotools.cloud but has no API endpoint.",
"request_id": "e4042b29-8f1e-4c7a-9b52-6f0d1a3c7e11"
}{
"type": "https://iotools.cloud/docs/errors/tool_not_found",
"title": "Tool not found",
"status": 404,
"code": "tool_not_found",
"detail": "No tool with that slug. See GET /v1/tools.",
"request_id": "e4042b29-8f1e-4c7a-9b52-6f0d1a3c7e11"
}{
"type": "https://iotools.cloud/docs/errors/payload_too_large",
"title": "Payload too large",
"status": 413,
"code": "payload_too_large",
"detail": "Request body exceeds this tool's size limit.",
"request_id": "e4042b29-8f1e-4c7a-9b52-6f0d1a3c7e11"
}{
"type": "https://iotools.cloud/docs/errors/rate_limited",
"title": "Rate limit exceeded",
"status": 429,
"code": "rate_limited",
"detail": "Too many requests. Retry in 30s.",
"request_id": "e4042b29-8f1e-4c7a-9b52-6f0d1a3c7e11"
}{
"type": "https://iotools.cloud/docs/errors/processing_error",
"title": "Tool failed to run",
"status": 500,
"code": "processing_error",
"detail": "The tool failed to run. Please try again.",
"request_id": "e4042b29-8f1e-4c7a-9b52-6f0d1a3c7e11"
}{
"type": "https://iotools.cloud/docs/errors/tool_disabled",
"title": "Tool temporarily disabled",
"status": 503,
"code": "tool_disabled",
"detail": "This tool is temporarily unavailable. Try again shortly.",
"request_id": "e4042b29-8f1e-4c7a-9b52-6f0d1a3c7e11"
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
Base Color
Blur (px)
0 <= x <= 150Number of Blobs
2, 3, 4, 5 Color
Position X %
0 <= x <= 100Position Y %
0 <= x <= 100Size %
10 <= x <= 150Color
Position X %
0 <= x <= 100Position Y %
0 <= x <= 100Size %
10 <= x <= 150Color
Position X %
0 <= x <= 100Position Y %
0 <= x <= 100Size %
10 <= x <= 150Color
Position X %
0 <= x <= 100Position Y %
0 <= x <= 100Size %
10 <= x <= 150Color
Position X %
0 <= x <= 100Position Y %
0 <= x <= 100Size %
10 <= x <= 150Animate (drift blobs slowly)
Animation Duration (s)
5 <= x <= 60Response
Tool output
Output-contract version for this tool. Currently "1" for all tools.
Show child attributes
Show child attributes
Credits this call consumed, after any settlement refund. 0 when metering is disabled.
Credits left in the current monthly allowance, or null when metering is disabled.
Was this page helpful?