Product
Jentic OSThe workplace. An in-house AI platform for every employeeJentic OneSafe access. Agents reach your systems without holding keysJentic AIRThe foundation. Gets your existing platforms ready for AI
Pricing
Developers

GET STARTED

API DirectoryBrowse 10,000+ APIs Ready For AI Agent IntegrationDocumentationGuides and API reference

TOOLS

API ScoringCheck your AI Readiness using our scorecardArazzo UIVisualize Arazzo Workflows As Interactive DocumentationArazzo EditorBuild And Edit Multi-Step API Workflows Visually

COMMUNITY

GitHubOpen source projects and examplesOpen StandardsBuilt on open specs. Never locked in.
Resources
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Try it now
Jentic OSJentic OneJentic AIR
Pricing
API DirectoryDocumentationAPI ScoringArazzo UIArazzo EditorGitHubOpen Standards
Resources
About UsCareersContact
Try it now
JenticJentic
Products
  • Jentic OS
  • Jentic One
  • Jentic AIR
For Developers
  • API Directory
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
  • Trust Centre
ISO/IEC 27001:2022 certification badge issued by Prescient SecurityISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic Technology Ltd. All rights reserved.
Switch to light modeSwitch to dark mode
APIs / AI/ML / DeepAI API
DeepAI API logo

DeepAI API

Official vendor OpenAPI document · agent-readyAI/MLVisionapiKey5 EndpointsREST

For Agents

Generate images from text, remove backgrounds, colorize photos, edit images by prompt, and run super-resolution upscaling through DeepAI's five-model vision API.

Use for: I need to generate an image from a text prompt, Remove the background from a photo, Colorize a black-and-white photograph, Upscale a low-resolution image with super resolution

Not supported: Does not handle text generation, audio transcription, or video models - use for DeepAI vision tasks (generation, background removal, colorization, editing, super resolution) only.

DeepAI is a multi-model AI provider whose v1 API exposes five vision endpoints: text-to-image generation, background removal, photo editing, image colorization, and torch-srgan super resolution. Each endpoint accepts a single POST and returns the generated or transformed image synchronously, which keeps integration straightforward for one-shot creative tasks. Authentication is a single api-key header. The surface is intentionally narrow - one endpoint per model - making it easy to wire up without orchestration.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the DeepAI API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the DeepAI 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.

1

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%2Fdeepai.org%2Fdeepai" | sh
2

Step 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%2Fdeepai.org%2Fdeepai" | sh
jentic register       # connects your agent to your Jentic One instance

Jentic 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.

Capabilities

What an agent can do with DeepAI API.

Generate an image from a text prompt at /text2img

Remove the background from an uploaded image via /background-remover

Edit an image by natural-language instructions through /image-editor

Colorize a black-and-white photo with /colorizer

Upscale and sharpen an image using torch-srgan super resolution

Use Cases

Patterns agents use DeepAI API for, with concrete tasks.

★ Marketing creative generation from copy

Marketing workflows that already have ad copy can pass the headline straight to /text2img and produce candidate visuals in seconds, then run /torch-srgan on the chosen image for higher resolution and /background-remover to drop it onto a brand template. The synchronous, one-shot response per endpoint suits ad-iteration loops where dozens of variants are evaluated quickly.

POST /text2img with the headline as the text prompt, take the returned image URL, then POST /torch-srgan to upscale it to ad-ready resolution.

Restoring and re-publishing archive imagery

Editorial teams handling historical archives can run /colorizer to add colour to monochrome scans and /torch-srgan to recover lost detail. Each is a single POST returning the processed image URL, so the workflow can scale across thousands of archive items by simply iterating the source list and storing the outputs.

POST /colorizer with each archive image URL, then POST /torch-srgan on the result and store both URLs alongside the original record.

On-demand product photo cleanup

E-commerce listings that arrive with cluttered or low-resolution photos can be cleaned in two calls: /background-remover for a transparent-background asset, then /torch-srgan to push the resolution up. The synchronous responses make this viable inside a request-time admin tool, not just a batch job.

POST /background-remover with the source URL, then POST /torch-srgan on the result and update the product image field with the final URL.

AI agent generating visuals through Jentic

An agent producing creative for a campaign can search Jentic for 'generate an image from text' and call DeepAI without ever holding the api-key. Because each model is a separate endpoint, the agent can compose multi-step pipelines (generate, then upscale, then remove background) with three discrete Jentic executions and predictable schemas.

Search Jentic for 'generate an image from text', execute /text2img with the prompt, then chain /torch-srgan and /background-remover as needed.

Key Endpoints

5 endpoints — deepai is a multi-model ai provider whose v1 api exposes five vision endpoints: text-to-image generation, background removal, photo editing, image colorization, and torch-srgan super resolution.

METHOD

PATH

DESCRIPTION

POST

/text2img

Generate an image from a text prompt

POST

/background-remover

Remove the background from an image

POST

/image-editor

Edit an image with a natural-language instruction

POST

/colorizer

Colorize a black-and-white photo

POST

/torch-srgan

Upscale and sharpen with super resolution

POST

/text2img

Generate an image from a text prompt

POST

/background-remover

Remove the background from an image

POST

/image-editor

Edit an image with a natural-language instruction

POST

/colorizer

Colorize a black-and-white photo

POST

/torch-srgan

Upscale and sharpen with super resolution

Why Jentic?

What agents get from Jentic-routed access to this vendor.

Setup

Setup

Wiring the DeepAI API by hand means learning its api-key header and mapping each vision model to its own path, from text2img to background-remover to torch-srgan. Through Jentic you install once, import the DeepAI API from the API Directory, store the API key once, and your agent calls it.

Permission scoping

Permission scoping

DeepAI carries the image or prompt in the request body rather than as a resource id in the URL path, so limit the agent to the operations it needs, such as generating an image or colorizing a photo. Because you pick the operations, the agent runs only the vision tasks you grant.

Credential management

Credential isolation

Your DeepAI api-key is stored once, encrypted, by your own Jentic One instance and set in the header at execution time. It never enters the agent's prompt, logs, or context.

Intent-based discovery

Intent-based discovery

Agents search Jentic by intent such as 'generate an image from text' or 'colorize a black-and-white photo', and Jentic returns the matching DeepAI operation with its input schema so the agent calls the right endpoint without learning each model's path by hand.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

OpenAI API

→

Includes DALL-E for text-to-image alongside language and audio models.

Choose OpenAI when you also need GPT or Whisper in the same workflow rather than vision-only models.

Alternative

Stability AI API

→

Stable Diffusion-based image generation with fine-grained control parameters.

Choose Stability when you need Stable Diffusion-specific knobs like seeds, samplers, and ControlNet.

Alternative

Replicate API

→

Run thousands of community-hosted vision and language models.

Choose Replicate when you need a specific community model that DeepAI's five-endpoint surface does not host.

Complementary

remove.bg API

→

Specialist background removal with high-quality alpha cutouts.

Pair with DeepAI when background quality matters more than the convenience of a single-vendor surface.

FAQs

Specific to using DeepAI API through Jentic.

What authentication does the DeepAI API use?

DeepAI uses an API key passed in the api-key request header on every endpoint. Through Jentic the key is held in the encrypted vault and applied at execution time, so the raw key never enters the agent's prompt or response.

Can I run text-to-image generation with DeepAI?

Yes. POST /text2img with a text prompt and DeepAI returns a generated image URL synchronously. There is one endpoint per model, so this is a one-shot call rather than a job-and-poll flow.

How do I upscale an image with DeepAI?

POST /torch-srgan with the source image and DeepAI returns a higher-resolution version using torch-srgan super resolution. Pair with /background-remover or /colorizer when the workflow needs more than just upscaling.

What are the rate limits for the DeepAI API?

The OpenAPI spec does not document explicit rate limits. Each endpoint is a synchronous POST, so for batch creative generation, fan out client-side rather than chaining sequentially to keep wall-clock time reasonable.

How do I generate an image through Jentic?

Run pip install jentic, search for 'generate an image from text', and Jentic returns the /text2img operation with its input schema. Load it, supply the prompt, and execute. The response includes the URL of the generated image, ready to download or pass to a downstream tool.

Does DeepAI offer language models or audio APIs in this spec?

Not in this OpenAPI spec. The five endpoints documented here are vision models: text-to-image, background removal, image editor, colorizer, and super resolution. For text generation or audio, choose a different provider rather than expecting it from this surface.

Can I limit what my agent is allowed to do with the DeepAI API?

Yes. Because Jentic One is self-hosted, you run it yourself and your own rules decide which of DeepAI's five vision operations the agent may call. You can grant only the endpoints a given agent needs, for example /text2img for text-to-image generation and /colorizer for photo colorization, while withholding /background-remover, /image-editor, or /torch-srgan. Since DeepAI carries the image or prompt in the request body rather than as a resource id in the path, scoping happens at the operation level, and the agent runs only the vision tasks you grant.

GET STARTED

Start building with DeepAI API

Explore with Jentic One
View OpenAPI Document