AI Generative Art Generator
Create algorithmic and generative art pieces using each::sense — the intelligent AI agent that automatically selects the best model for your request.
Quick Start
Requires an each::labs API key. Get one at eachlabs.ai.
Using curl
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"messages": [
{
"role": "user",
"content": "Create a generative art piece: thousands of tiny colored particles flowing along invisible magnetic field lines, forming an organic spiral pattern, particles transition from deep crimson to bright gold along the flow path, dark background, mathematical beauty, high resolution digital art"
}
],
"stream": false
}'
Using Python (OpenAI SDK)
from openai import OpenAI
client = OpenAI(
api_key="YOUR_EACHLABS_API_KEY",
base_url="https://eachsense-agent.core.eachlabs.run/v1"
)
response = client.chat.completions.create(
model="eachsense/beta",
messages=[{
"role": "user",
"content": "Create a generative art piece: thousands of tiny colored particles flowing along invisible magnetic field lines, forming an organic spiral pattern, particles transition from deep crimson to bright gold along the flow path, dark background, mathematical beauty, high resolution digital art"
}]
)
print(response.choices[0].message.content)
Streaming
Set "stream": true for real-time SSE responses, or "stream": false for complete result in a single response. Streaming is useful for showing progress in UIs; non-streaming is simpler for scripts and automation.
Tips for Generative Art
- Reference mathematical concepts — "Fibonacci spiral," "Voronoi tessellation," "fractal branching," "Perlin noise."
- Describe the algorithm metaphorically — "particles following flow fields," "recursive subdivision," "cellular automaton."
- Specify color mapping — how colors change along gradients, by density, or by position.
- Mention the scale — "thousands of elements," "dense particle field," "sparse geometric network."
- Include technical art references — "Processing style," "creative coding," "generative design."
Examples
Fractal Composition
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"messages": [
{
"role": "user",
"content": "A fractal art piece: a Mandelbrot-inspired deep zoom showing intricate spiraling patterns, electric blue and violet color palette with bright white hot spots at the deepest zoom levels, infinite complexity, mathematical beauty, ultra-detailed digital rendering"
}
],
"stream": false
}'
Flow Field Visualization
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"messages": [
{
"role": "user",
"content": "A generative flow field artwork: hundreds of curved lines following Perlin noise patterns across the canvas, varying line thickness based on velocity, gradient from ocean blue at the edges to warm coral at the center, white canvas background, elegant and organic, creative coding aesthetic"
}
],
"stream": false
}'
Voronoi Pattern Art
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"messages": [
{
"role": "user",
"content": "A Voronoi tessellation artwork: irregular polygonal cells covering the canvas, each cell filled with a unique color from a sunset palette of orange, pink, purple, and deep blue, thin white cell boundaries, some cells contain smaller nested Voronoi patterns creating depth, generative art style"
}
],
"stream": false
}'
Recursive Geometry
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"messages": [
{
"role": "user",
"content": "A recursive geometric generative art piece: a large triangle subdivided into smaller triangles, each subdivision rotated slightly and filled with progressively warmer colors from cool teal at the outer edges to fiery orange at the center, Sierpinski triangle inspired, clean vector aesthetic, black background"
}
],
"stream": false
}'
Workflow: Generative Art Series
- Define the algorithm concept — Flow fields, fractals, cellular automata, particle systems, or tessellations.
- Choose a color strategy — Gradient mapping, random palette, data-driven, or position-based coloring.
- Generate the base piece — Create the initial composition.
- Create variations — Adjust parameters (density, color, scale) for series cohesion with individuality.
- Curate and mint — Select the strongest pieces for publication or NFT minting.
Related Skills
Related Models
Documentation
1---2name: ai-generative-art3description: Generate algorithmic and generative art pieces using each::sense AI. Create mathematical art, fractal compositions, procedural patterns, data-driven visualizations, and code-inspired abstract works. Use for: generative art, algorithmic art, fractal art, mathematical visualization, procedural art, creative coding visuals. Triggers: generative art, algorithmic art, fractal, procedural art, mathematical art, code art, data art, parametric art, computational art, creative coding4---56# AI Generative Art Generator78Create algorithmic and generative art pieces using [each::sense](https://docs.eachlabs.ai/sense/overview) — the intelligent AI agent that automatically selects the best model for your request.910## Quick Start1112> Requires an each::labs API key. Get one at [eachlabs.ai](https://eachlabs.ai).1314### Using curl1516```bash17curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \18 -H "Content-Type: application/json" \19 -H "X-API-Key: $EACHLABS_API_KEY" \20 -d '{21 "messages": [22 {23 "role": "user",24 "content": "Create a generative art piece: thousands of tiny colored particles flowing along invisible magnetic field lines, forming an organic spiral pattern, particles transition from deep crimson to bright gold along the flow path, dark background, mathematical beauty, high resolution digital art"25 }26 ],27 "stream": false28 }'29```3031### Using Python (OpenAI SDK)3233```python34from openai import OpenAI3536client = OpenAI(37 api_key="YOUR_EACHLABS_API_KEY",38 base_url="https://eachsense-agent.core.eachlabs.run/v1"39)4041response = client.chat.completions.create(42 model="eachsense/beta",43 messages=[{44 "role": "user",45 "content": "Create a generative art piece: thousands of tiny colored particles flowing along invisible magnetic field lines, forming an organic spiral pattern, particles transition from deep crimson to bright gold along the flow path, dark background, mathematical beauty, high resolution digital art"46 }]47)4849print(response.choices[0].message.content)50```5152### Streaming5354Set `"stream": true` for real-time SSE responses, or `"stream": false` for complete result in a single response. Streaming is useful for showing progress in UIs; non-streaming is simpler for scripts and automation.5556## Tips for Generative Art5758- **Reference mathematical concepts** — "Fibonacci spiral," "Voronoi tessellation," "fractal branching," "Perlin noise."59- **Describe the algorithm metaphorically** — "particles following flow fields," "recursive subdivision," "cellular automaton."60- **Specify color mapping** — how colors change along gradients, by density, or by position.61- **Mention the scale** — "thousands of elements," "dense particle field," "sparse geometric network."62- **Include technical art references** — "Processing style," "creative coding," "generative design."6364## Examples6566### Fractal Composition6768```bash69curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \70 -H "Content-Type: application/json" \71 -H "X-API-Key: $EACHLABS_API_KEY" \72 -d '{73 "messages": [74 {75 "role": "user",76 "content": "A fractal art piece: a Mandelbrot-inspired deep zoom showing intricate spiraling patterns, electric blue and violet color palette with bright white hot spots at the deepest zoom levels, infinite complexity, mathematical beauty, ultra-detailed digital rendering"77 }78 ],79 "stream": false80 }'81```8283### Flow Field Visualization8485```bash86curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \87 -H "Content-Type: application/json" \88 -H "X-API-Key: $EACHLABS_API_KEY" \89 -d '{90 "messages": [91 {92 "role": "user",93 "content": "A generative flow field artwork: hundreds of curved lines following Perlin noise patterns across the canvas, varying line thickness based on velocity, gradient from ocean blue at the edges to warm coral at the center, white canvas background, elegant and organic, creative coding aesthetic"94 }95 ],96 "stream": false97 }'98```99100### Voronoi Pattern Art101102```bash103curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \104 -H "Content-Type: application/json" \105 -H "X-API-Key: $EACHLABS_API_KEY" \106 -d '{107 "messages": [108 {109 "role": "user",110 "content": "A Voronoi tessellation artwork: irregular polygonal cells covering the canvas, each cell filled with a unique color from a sunset palette of orange, pink, purple, and deep blue, thin white cell boundaries, some cells contain smaller nested Voronoi patterns creating depth, generative art style"111 }112 ],113 "stream": false114 }'115```116117### Recursive Geometry118119```bash120curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \121 -H "Content-Type: application/json" \122 -H "X-API-Key: $EACHLABS_API_KEY" \123 -d '{124 "messages": [125 {126 "role": "user",127 "content": "A recursive geometric generative art piece: a large triangle subdivided into smaller triangles, each subdivision rotated slightly and filled with progressively warmer colors from cool teal at the outer edges to fiery orange at the center, Sierpinski triangle inspired, clean vector aesthetic, black background"128 }129 ],130 "stream": false131 }'132```133134## Workflow: Generative Art Series1351361. **Define the algorithm concept** — Flow fields, fractals, cellular automata, particle systems, or tessellations.1372. **Choose a color strategy** — Gradient mapping, random palette, data-driven, or position-based coloring.1383. **Generate the base piece** — Create the initial composition.1394. **Create variations** — Adjust parameters (density, color, scale) for series cohesion with individuality.1405. **Curate and mint** — Select the strongest pieces for publication or NFT minting.141142## Related Skills143144- [AI Abstract Art](../ai-abstract-art/SKILL.md) — Abstract digital artwork145- [AI NFT Collection](../ai-nft-collection/SKILL.md) — NFT collection generation146- [AI Pixel Art](../ai-pixel-art/SKILL.md) — Pixel-based art generation147- [Text to Image](../../image/text-to-image/SKILL.md) — General image generation148149## Related Models150151- [flux-2-max](../../../models/flux-2-max/SKILL.md) — High-resolution detailed art152- [seedream-v4-5](../../../models/seedream-v4-5/SKILL.md) — Creative artistic outputs153- [nano-banana-pro](../../../models/nano-banana-pro/SKILL.md) — Fast parameter exploration154155## Documentation156157- [each::sense Overview](https://docs.eachlabs.ai/sense/overview)158- [each::labs API](https://docs.eachlabs.ai)