Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Deep Art Effects API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.
Step 1: Jentic One Host machine
# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fdeeparteffects.com%2Fdeeparteffects" | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fdeeparteffects.com%2Fdeeparteffects" | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with Deep Art Effects API.
Upload a source image to run neural style transfer on it
List the art styles an image can be transformed into
Retrieve the finished stylized image once the job completes
Turn an ordinary photo into artwork rendered in a selected style
Patterns agents use Deep Art Effects API for, with concrete tasks.
GET STARTED
★ AI Agent Image Stylization
An AI agent can turn a plain image into styled artwork on demand by uploading the source image, selecting one of the styles the service exposes, and fetching the rendered result. Through Jentic the agent discovers these operations by intent and calls them with the correct input schema, so a creative workflow can produce stylized assets without a developer wiring the image endpoints by hand.
Upload a product photo, select an oil-painting style from the available styles, and retrieve the finished stylized image
Product Photo Art Rendering
E-commerce and marketing teams can render product photos in a consistent artistic style for campaigns and social posts. Deep Art Effects handles the style transfer server-side: the source image is uploaded, a style is chosen, and the transformed image is returned for download. This keeps a recognizable visual treatment across a product range without manual editing in a design tool.
Render a set of product photos in a single watercolor style and save each returned image
Social Media Art Generation
Creators can generate shareable stylized versions of their own photos for social media. The service returns a new image with the selected artistic treatment applied, so an agent can produce a themed post image from a user's upload and hand back the finished artwork. Style choices come from the list the service publishes rather than arbitrary prompts.
Convert a user's selfie into a cartoon-style image and return the stylized result
3 endpoints — the deep art effects api applies neural style transfer to your images, turning an uploaded photo into artwork rendered in a chosen artistic style.
METHOD
PATH
DESCRIPTION
/noauth/upload
Upload a source image to start a style-transfer job
/noauth/styles
List the available art styles
/noauth/result
Retrieve the finished stylized image
/noauth/upload
Upload a source image to start a style-transfer job
/noauth/styles
List the available art styles
/noauth/result
Retrieve the finished stylized image
What agents get from Jentic-routed access to this vendor.
Setup
Wiring Deep Art Effects by hand means handling its API key in the x-api-key header and polling for the finished image yourself. Through Jentic you install once, import Deep Art Effects from the API Directory, store the key once, and your agent calls it.
Permission scoping
Deep Art Effects carries no resource id in its URL paths, so scoping is by operation: a rule can bound your agent to the upload and result-retrieval operations. You choose the operations it may call, so it only stylizes images and reads results.
Credential isolation
Your Deep Art Effects API key is stored encrypted by your own Jentic One instance and injected at execution time. It never enters the agent's prompt, logs, or context.
Intent-based discovery
Agents search Jentic by intent such as 'apply an art style to an image' or 'list available styles', and Jentic returns the matching Deep Art Effects operation with its input schema so the agent calls the right endpoint.
Alternatives and complements available in the Jentic catalogue.
Specific to using Deep Art Effects API through Jentic.
Is there a Deep Art Effects MCP server?
You don't need an MCP server to give your agent the Deep Art Effects API. Jentic connects it directly from the API Directory: import it, store your key once, and your agent can upload an image, pick a style, and fetch the result. Operations are discovered on demand, so no extra tool definitions are loaded into the agent's context.
Can I limit what my agent is allowed to do with the Deep Art Effects API?
Yes. Deep Art Effects carries no resource id in its URL paths, so you scope by operation: write a rule that allows only the upload and result-retrieval operations, and the agent can stylize images and read back the output while touching nothing else. Every call it makes is logged.
What authentication does the Deep Art Effects API use?
The Deep Art Effects API authenticates with an API key sent in the x-api-key header per its OpenAPI spec. When you connect it through Jentic, the key is stored encrypted by your own Jentic One instance and injected at call time, so it never appears in the agent's prompt or logs.
Can I apply a specific art style to an image with the Deep Art Effects API?
Yes. The API returns the list of styles it supports, and you pass the chosen style when uploading a source image. The service renders the image in that style server-side and returns the finished result for download once the job completes.
What are the rate limits for the Deep Art Effects API?
The OpenAPI spec does not specify rate limits. Check the Deep Art Effects documentation at https://www.deeparteffects.com for current limits and plan quotas before running high-volume stylization jobs.
How do I stylize an image with the Deep Art Effects API through Jentic?
Search Jentic for 'apply an art style to an image', import the Deep Art Effects operations, and store your API key once. Your agent then uploads a source image, selects a style, and retrieves the rendered result. To run it on your own infrastructure, install Jentic One from its GitHub repo.
Know of an official OpenAPI document? Contribute it →
For Agents
Apply neural art styles to an uploaded image: submit a photo, choose from the available styles, and fetch the finished stylized result.
Use for: Apply a Van Gogh style to my product photo, Turn my uploaded image into a watercolor painting, List the art styles available for image stylization, Check whether my style-transfer job has finished
Not supported: Does not handle image hosting, background removal, or general photo editing. Use for neural art-style transfer only.
The Deep Art Effects API applies neural style transfer to your images, turning an uploaded photo into artwork rendered in a chosen artistic style. You submit a source image, pick from the styles the service offers, and retrieve the finished stylized image once processing completes. It is a focused image-transformation service rather than a general image editor.