Skip to content

runapi-ai/ideogram-v3-sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RunAPI

Ideogram V3 API SDKs for JavaScript, Ruby, and Go on RunAPI.

npm RubyGems Go Reference License


The ideogram api SDK packages JavaScript, Ruby, and Go clients for Ideogram V3 on RunAPI. Use this ideogram api SDK for text-to-image, inpaint editing, and image remix workflows that need typed installs, JSON request bodies, task polling, and consistent RunAPI errors across services.

Ideogram V3 belongs to the Ideogram catalog on RunAPI. The public model page is https://runapi.ai/models/ideogram-v3; variant pages below carry pricing, rate-limit, and commercial-usage details. The public ideogram-v3-sdk repository groups the JavaScript, Ruby, and Go packages for this model.

Install

npm install @runapi.ai/ideogram-v3
gem install runapi-ideogram-v3
go get github.com/runapi-ai/ideogram-v3-sdk/go@latest

What you can build

  • Build creative tools, agent pipelines, and production integrations with the ideogram api SDK.
  • Keep one model-specific repository while installing only the language package your app needs.
  • Use create for submit-only jobs, get for status lookup, and run for submit-and-poll scripts.
  • Handle authentication, validation, rate limits, insufficient credits, task failures, and polling timeouts through RunAPI SDK errors.

The JavaScript client exposes text to image, edit image, remix image resources, and the Ruby and Go packages mirror the same RunAPI task lifecycle.

JavaScript quick start

import { IdeogramV3Client } from '@runapi.ai/ideogram-v3';

const client = new IdeogramV3Client();

const task = await client.textToImage.create({
  // Pass the Ideogram V3 request body documented at https://runapi.ai/docs#ideogram-v3.
});

const status = await client.textToImage.get(task.id);

For short scripts, use run with the same JSON body to create the task and wait for completion. For web request handlers, prefer create plus webhook or later get polling so the server does not hold a worker open.

Repository layout

  • js/ publishes @runapi.ai/ideogram-v3.
  • ruby/ publishes runapi-ideogram-v3 when RubyGems publishing resumes.
  • go/ publishes github.com/runapi-ai/ideogram-v3-sdk/go and depends on github.com/runapi-ai/core-sdk/go.

Public links

Pricing and variants

Use the most specific ideogram api variant page for pricing, rate limits, and commercial usage:

Default pricing link for the ideogram api SDK: https://runapi.ai/models/ideogram-v3/text-to-image

FAQ

Which package should I install for ideogram api work?

Install the model package for your language: @runapi.ai/ideogram-v3, runapi-ideogram-v3, or github.com/runapi-ai/ideogram-v3-sdk/go. Install core SDK packages only when you are building shared SDK infrastructure.

Where should public links point?

Primary ideogram api links point to https://runapi.ai/models/ideogram-v3. Pricing and usage-policy links point to variant pages such as https://runapi.ai/models/ideogram-v3/text-to-image. Provider comparisons point to https://runapi.ai/providers/ideogram, and broad browsing points to https://runapi.ai/models.

License

Licensed under the Apache License, Version 2.0.