LimeWire AI API: Features, Capabilities, Pricing, And Much More

LimeWire AI API

The LimeWire AI API defines an entry point to AI-powered image creation. Developers can seamlessly incorporate it into their applications, granting end users access to generative AI capabilities.

Pros

  • Simple structure for the Rest API.
  • Provides access to prominent AI models.
  • Multiple programming languages are supported.

Cons

  • There is no option to select a special AI model.

To generate and transform images, the LimeWire AI API provides access to industry-leading generative AI models (DALL-E, BlueWillow, Stable Diffusion, Mubert, Stability AI, Google AI Imagen). LimeWire AI APIs are designed with developers in mind, enabling effortless integration with business applications to provide end users with generative AI capabilities. Multiple programming languages, including JavaScript, PHP, Python, Ruby, Java, C#, and Go, are supported for integration.

LimeWire AI API

LimeWire AI API Capabilities

The LimeWire AI API is an excellent option for developers seeking to leverage the capabilities of leading generative AI models like Stable Diffusion, DALL-E, and others. LimeWire currently provides text-based APIs in JSON format that facilitate image creation, upscaling, inpainting, and outpainting via text commands. The subsequent sections provide details on the capabilities of the LimeWire AI API.

Text To Image Generation

In text-to-image generation, the image is described, and the AI produces an output. A user may deploy this API in three methods.

1. Minimal – Uses the prompt & aspect ratio.

{
  "prompt": "A dog holding an umbrella in the rain", //image description
  "aspect_ratio": "1:1" // 1:1, 2:3, 3:2
}

2. Prompt – Additional fields are provided to accommodate factors such as the number of samples, quality, guidance scale, and negative prompt.

{
  "prompt": "A dog holding an umbrella in the rain", //image description
  "negative_prompt": "darkness", //things to avoid
  "samples": 2, // 1 to 4 
  "quality": "LOW",  // LOW, MID, HIGH
  "guidance_scale": 50, // 1-100
  "aspect_ratio": "1:1", // 1:1, 2:3, 3:2
  "style": "PHOTOREALISTIC" // PHOTOREALISTIC, SCIFI, LANDSCAPE
}

3. Prompt And Image – The prompt and image parameter is appended to the previously specified prompt payload.

{
  "prompt": "A dog holding an umbrella in the rain", //image description
  "negative_prompt": "darkness", //things to avoid
  "image_asset_id": "7be2d783-4826-406a-869e-d0ac1d344a37", //base image
  "samples": 2, // 1 to 4 
  "quality": "LOW",  // LOW, MID, HIGH
  "guidance_scale": 50, // 1-100
  "aspect_ratio": "1:1", // 1:1, 2:3, 3:2
  "style": "PHOTOREALISTIC" // PHOTOREALISTIC, SCIFI, LANDSCAPE
}

The final generation achieves optimal control over the generation, which uses a base image to influence the output. The “prompt” option will be demonstrated initially, while the “prompt and image” option will be addressed in the following section (Generating images from prompts).

{
  "prompt": "a nuclear wasteland with crumbling skyscrapers, toxic skies, eerie glow, mutated flora",
  "negative_prompt": "sunshine, trees",
  "samples": "1", // 1 to 4 
  "quality": "HIGH",  // LOW, MID, HIGH
  "guidance_scale": "60",  // 1-100
  "aspect_ratio": "3:2",  // 1:1, 2:3, 3:2
  "style": "PHOTOREALISTIC"  // PHOTOREALISTIC, SCIFI, LANDSCAPE
}

The following is the response to the API request made previously. The output asset ID, URL, and dimensions can all be checked, as well as the API response status, credits used, and remaining.

{
    "id": "4ceccad6-7c94-4500-bf13-d073b517cf4d",
    "self": "https://api.limewire.com/api/request/4ceccad6-7c94-4500-bf13-d073b517cf4d",
    "status": "COMPLETED",
    "failure_code": null,
    "failure_reason": null,
    "credits_used": 1.5,
    "credits_remaining": 7423.5,
    "data": [
        {
            "asset_id": "f59ee425-e1bd-4f98-870a-a0f3858d666a",
            "self": "https://api.limewire.com/api/assets/f59ee425-e1bd-4f98-870a-a0f3858d666a",
            "asset_url": "https://ai-studio-assets.limewire.media/u/5f8e7e8d-5294-434a-a677-b38e23642977/image/212a68af-e282-4cc2-93e7-1f9dde2bed5e?Expires=1710411927&Signature=o157zMZnRYJ0kiY5kXWWmQmbv3rTiiWMssX36XLZzV4vux493QurO7NtuMp83Snxw2trHvOyqQetXfxaQZ2clhgt2jsXRdfnSFb2vrvSBOowV9iX5DwEPVNdHw~x6EjV08tbg72MRQRZEw7BijEIbF6wrZyT4DjYZ7U2TzUzZNJ11GqFixmXyuV1snXgDXLozyc567oOjtQKFIUyp0tZBoj-paZ87zKWDuHQDsOl4YKJU6FKfL3kRwLUJI0NaoJLNi2riuvK8nJweNDcuiH4LVo5na07RamfUPeFNcAIE87dkkMhA2RWI2vGSxIhQ72iPYRnRXk1msETOHK4UUF73A__&Key-Pair-Id=K1U52DHN9E92VT",
            "type": "image/jpeg",
            "width": 1536,
            "height": 1024
        }
    ]
}

The acquired image.

LimeWire AI API

Given the prompt, I can’t think of anything more suitable. In addition to providing nearly every requested detail, such as the atmosphere and buildings, the LimeWire AI API avoided the negative prompt elements. The “guidance scale” allows the user to modify the extent to which the prompt impacts the final output. In addition, “style” will provide an expanded selection of variations.

ALSO READ:  Paramount Plus Free Trial Of 7 Days Paramount +

Image To Image Generation

The LimeWire Image to Image generation API adds new elements to a primary image. This uses the “prompt and image” format of the previously mentioned text-to-generation API. For example, I generated an image of a train carriage house.

{
  "prompt": "a train carriage house",
  "negative_prompt": "",
  "samples": "4",  // 1 to 4
  "quality": "MID",  // LOW, MID, HIGH
  "guidance_scale": "70",  // 1-100
  "aspect_ratio": "3:2",  // 1:1, 2:3, 3:2
  "style": "PHOTOREALISTIC"  // PHOTOREALISTIC, SCIFI, LANDSCAPE
}

The response provides the requested four samples.

{
    "id": "6e0939ed-e25c-4486-a58b-03e8bcd5ba04",
    "self": "https://api.limewire.com/api/request/6e0939ed-e25c-4486-a58b-03e8bcd5ba04",
    "status": "COMPLETED",
    "failure_code": null,
    "failure_reason": null,
    "credits_used": 3.96,
    "credits_remaining": 7422.0,
    "data": [
        {
            "asset_id": "df904cfb-0ca1-4427-8132-16cea7537522",
            "self": "https://api.limewire.com/api/assets/df904cfb-0ca1-4427-8132-16cea7537522",
            "asset_url": "https://ai-studio-assets.limewire.media/u/5f8e7e8d-5294-434a-a677-b38e23642977/image/4d7070bd-0f00-4da5-b167-1d96e1951826?Expires=1710412692&Signature=rk0KhDBFS571TcggnecX8gZZxxAnFqP-67SEwAsq2JrGkR7mqf7qmfuxkKOqigNXGUqi~3SCSImpyca84nRJElyFWIEm~LVGG2n8dxz6wVob2ANFAI3SigU1vyPC0Qx-5XQt78slT0iq4B5OGbPYQHXDc2ewyRUv05r~miap5ZP67OGu1EWb1gu5rO-VmQBwOcR~E90sI0fV6Z-d8GxL~bxvRf-2A52k2SBcRKNOqtmIJw-NCXwS9dd2y-I5v0I62iBcA-uXwmCCRyRrgqUigAjLWEjAXdvxEq6feDNylMlHT2r2A94MiZ6szGmqjT0idKE92M7q8MlCLBh32luiHA__&Key-Pair-Id=K1U52DHN9E92VT",
            "type": "image/jpeg",
            "width": 1536,
            "height": 1024
        },
        {
            "asset_id": "7be2d783-4826-406a-869e-d0ac1d344a37",
            "self": "https://api.limewire.com/api/assets/7be2d783-4826-406a-869e-d0ac1d344a37",
            "asset_url": "https://ai-studio-assets.limewire.media/u/5f8e7e8d-5294-434a-a677-b38e23642977/image/4aae16c3-a35d-4448-9f31-159fb09af706?Expires=1710412692&Signature=U500LTKHJbXlyWXslS4NoUp6W17X8x50gO-H7UJhqMmeiXZx9SAcH4W7lseu63yssTmbTv-bY1KXdswLIH7vI1mA-XYQSsHaJgyVx85~B0hTgcpuu-HEg7W5ZGx4azJQyqxXP9QqqULnUDpKPfAUy9NL6Lkl9bCw7xCHaULOVTa3Y4-xiEBLSRiLXfxku8BuKuMi-S6pJwOg6aoqMH9HT4Jbr2gwuAtXPP4GSSlXlavF-9bwLvpchN1VfEFa9Kj73irsiN-AYR0JRSQcStTwm4Ew2i5x321a9lgWwBADkHaL1RedinhhkHcL79ZsmiqOhXfRQNBcd7kAdugkMCctsw__&Key-Pair-Id=K1U52DHN9E92VT",
            "type": "image/jpeg",
            "width": 1536,
            "height": 1024
        },
        {
            "asset_id": "de324097-20e6-450f-ad25-35ec158e0f6d",
            "self": "https://api.limewire.com/api/assets/de324097-20e6-450f-ad25-35ec158e0f6d",
            "asset_url": "https://ai-studio-assets.limewire.media/u/5f8e7e8d-5294-434a-a677-b38e23642977/image/cf08dbf2-a4f8-4ab5-89de-1aa00a19e1e4?Expires=1710412692&Signature=dCEuCNXWeugdXICiGWj07O39mJ-In02m9oKIHuacFYRF-I4bIpARuHQCeP7Jgp62OBxDgaFTF5W9byj3sYOsluBV3NZ7oe5fRLLg3VjzCxRbhWREW0IHyxxCLEvIols6AHmipg3e8MOo5v0C4npR1aOXHVSOxyQW61n-Y8NjAKimXTLBQGXA~EfINOM9XBlygp-AePCRfv8g8B8NS-L5p4ePB~XKHLWT9eTL7pOldsAVo5fN4eblby0P1HC-NB28pvKMipek-ZTnP7ZIy-zkS-H4UEmCofdIgQYl1Zcm8wES75eKUu2P5rG43cNo7w67KmMdJz932LZ88NPo0G2NJw__&Key-Pair-Id=K1U52DHN9E92VT",
            "type": "image/jpeg",
            "width": 1536,
            "height": 1024
        },
        {
            "asset_id": "55ae2ee9-7746-4cd4-8bda-8c8a9a6598ad",
            "self": "https://api.limewire.com/api/assets/55ae2ee9-7746-4cd4-8bda-8c8a9a6598ad",
            "asset_url": "https://ai-studio-assets.limewire.media/u/5f8e7e8d-5294-434a-a677-b38e23642977/image/cbdf1b6d-9ab8-42b0-b40a-29c07459d3a2?Expires=1710412692&Signature=VCviYv890sUxIrOL1aJJoTJsMGzBIykHB3ItKH4gFrjafpWd8l3~Ldh3FNLARLZ~x9Z~0naIweGIhzV5LFvIJ2QiUS0ODmvaQO5x0da9bGorhSc~ccfTOq2tBwL17L7AE2G4JkvdSYfl4QPFWk10R2qUEiQUij9BeyURKNMWzxjesQjdqWJ0oTKQaJPzCelogeehwkDhiriYQ3CfcWsI-iJP~JW6a7Di1rJUaibWBBe13GSyGl8VPek65o6CAuZi9s8I~M59Jk7sY8z~HBDVxqUiGkEUt47nuKqEjskpV40480mkVI3MEuK0~bzvQfwynCFpX8RsVjoWV7aAr4jodg__&Key-Pair-Id=K1U52DHN9E92VT",
            "type": "image/jpeg",
            "width": 1536,
            "height": 1024
        }
    ]
}

I’ve selected the asset_id of the most aesthetically pleasing image to be applied to subsequent generations, modifying elements such as the train house windows and the cosmetics of the entire structure.

{
  "prompt": "glass windows with silver grills, antique, dark",
  "negative_prompt": "",
  "image_asset_id": "7be2d783-4826-406a-869e-d0ac1d344a37",
  "samples": 2,
  "quality": "MID",
  "guidance_scale": 60,
  "aspect_ratio": "3:2",
  "style": "PHOTOREALISTIC"
}

Consider the following response.

{
    "id": "f8d6af8a-b88b-4dea-86c8-88e1c22c35b0",
    "self": "https://api.limewire.com/api/request/f8d6af8a-b88b-4dea-86c8-88e1c22c35b0",
    "status": "COMPLETED",
    "failure_code": null,
    "failure_reason": null,
    "credits_used": 1.98,
    "credits_remaining": 7418.04,
    "data": [
        {
            "asset_id": "5a4dfc70-2eac-4e77-b745-042a214710d1",
            "self": "https://api.limewire.com/api/assets/5a4dfc70-2eac-4e77-b745-042a214710d1",
            "asset_url": "https://ai-studio-assets.limewire.media/u/5f8e7e8d-5294-434a-a677-b38e23642977/image/61a804f6-cfda-41a5-ba94-8c6920f24e82?Expires=1710412840&Signature=BUGbdO7cU3G1MslIO2Pm2r7jyEAMGekQCyXq9eXAaETLI0Wi5ZJ8cQjKeL9gabCObjdjG98HpOO-HQW2f9r8GJUbLXoK1G-WTzOFW5PTR6RXR8ts2JM1lV0H41FNetxaXRTPBpZT~sy5GnKmPuM3SG3S0iGg6qEZfzCKx9-Kn7a2DecbxubPEjtPPU8dvzwUFgXG4fTAHwQJRNO5Lix-Iuquyb-2g2Q~R8RXZVvBNdANNQkNrGqw9yW019gx5EhdmmDZCBo9~rNIpacD7VhtW~E9mSMpY~VEWZfzADaPPSZD4NkrVQyRtYFMz1-OKHPqjkstStHP-MY1TsLMS2w9Kw__&Key-Pair-Id=K1U52DHN9E92VT",
            "type": "image/jpeg",
            "width": 1536,
            "height": 1024
        },
        {
            "asset_id": "aedf0500-d1c7-4176-9dce-a175cac150fe",
            "self": "https://api.limewire.com/api/assets/aedf0500-d1c7-4176-9dce-a175cac150fe",
            "asset_url": "https://ai-studio-assets.limewire.media/u/5f8e7e8d-5294-434a-a677-b38e23642977/image/f0308527-2b52-44e1-9768-9fda13cd9f64?Expires=1710412840&Signature=kZhhdILw8qJU8ut7zR~Ty9FA~waJMRJLJU830EyyCShYR5iw8v-hCPDlyskUiTURNCbwRTmLHWbt4TyM5Kr0a2L8rpAnDYQOA3FiIq-QZXX9hAST~0ULapTuujuw0fhPxh7wAhpIK7mJbudTwhd1ZOfnNy6KKhh-Qo-s2dtL3344ZzSQnTba8DzEBsQOwderm4tQoqry~ZUGXVngqXe1AKSgvoY8fns-sSLmyPm58ODHRp0Ph~NX~NvJSS-XyOaM48khZZthXbvhRkFjP84mJiV~hQzPgXFh1wYHITyx2H9EKagDV7-7aHivorUtBUS~72aBGjt-w4TDfS3~3YbAiw__&Key-Pair-Id=K1U52DHN9E92VT",
            "type": "image/jpeg",
            "width": 1536,
            "height": 1024
        }
    ]
}

Identify the subtle differences between the two images, working from left to right, including the rooftop, windows, track, etc. Everything can transform from refined and contemporary to rustic and old-fashioned in appearance.

In general, the response from the image-to-image generation API is satisfactory. Notably, this originates from the identical API endpoint used previously during the text-to-image conversion. The sole distinction is including an extra field denoting the original image, which is altered in response to the latter prompt.

Image Outpainting

The frame can be extended in any direction using the LimeWire Image Outpainting API. The payload comprises three distinct elements: the asset ID, the outpainting direction, and the cropping side.

{
  "image_asset_id": "81dd9fce-1e6d-412f-9ed9-f1a90edfbd94",
  "direction": "RIGHT",
  "crop_side": "LEFT"
}

Requesting that the frame be extended in the right direction, the API payload permits cropping on the left.

{
    "id": "76cb2556-bd08-444f-9dbb-b95fdc37817c",
    "self": "https://api.limewire.com/api/request/76cb2556-bd08-444f-9dbb-b95fdc37817c",
    "status": "COMPLETED",
    "failure_code": null,
    "failure_reason": null,
    "credits_used": 1.5,
    "credits_remaining": 7413.06,
    "data": [
        {
            "asset_id": "03945d7e-7731-4f82-990c-db7241577b34",
            "self": "https://api.limewire.com/api/assets/03945d7e-7731-4f82-990c-db7241577b34",
            "asset_url": "https://ai-studio-assets.limewire.media/u/5f8e7e8d-5294-434a-a677-b38e23642977/image/ac290eb8-93c0-4e5a-92d1-bb48633e4519?Expires=1710413088&Signature=laebXRkNonCvfQERkyICJ5sWg0hX2U11r1cqC93bUq3RH67dq1IVA6sCtCcko1OfTEaR3kTbKYtP6F2cp8s0Z8Q~-fgJX~FgR5Z7cbhqjCPsfZqGhUhAbwOp~kUJjsBGipLhmM2iYFQqPRtYlhDoL5tWL4x-vLbgUHrVtvsASTFT-NQNMZlCbM7ruq7EiWhhJmXzrDE5djM75F6GXktVEtBXlkawVnwJis3gxeLJgYOHNaP0xmqlQi7gWhlTb3dakCErLMq-23YyDPiQZ-Q6gXqSxI8YST5Qu3TYNwxCCKdTTpJ1bvDHifIpDTSnKotdvERkFtzycU8os2QJpvo6~w__&Key-Pair-Id=K1U52DHN9E92VT",
            "type": "image/jpeg",
            "width": 1088,
            "height": 640
        }
    ]
}

 

Check out the shrub added to the frame in the second image. Overall, the outpainting output was satisfactory. Nevertheless, greater regulation over the extent of frame extension would have enhanced the experience.

Image Inpainting

Image inpainting involves modifying specific components or incorporating supplementary elements into a given image. When the asset ID of an existing image is entered, the user is prompted accordingly.

{
  "image_asset_id": "30c03d99-dfc5-4820-824d-5e6a2492cd37",
  "prompt": "a fountain"
}

Image Upscaling

Using the LimeWire Image Upscaling API, one can enlarge an image without a discernible reduction in quality. The interface is highly intuitive, consisting of only two required fields: asset_id and upscaling factor (1 to 4).

{
  "image_asset_id": "30c03d99-dfc5-4820-824d-5e6a2492cd37",
  "upscale_factor": 2
}

These were the few APIs presently available, and LimeWire has listed some more APIs that will be available shortly, including those for background eradication and audio and video generation. In addition, another API for uploading images can be used for inpainting, outpainting, etc.

ALSO READ:  Rajkotupdates.news: The Government Has Made A Significant Announcement Regarding Interest Rates

LimeWire AI API Features

The LimeWire AI API structure has developer-friendly features, including a straightforward API structure, availability in multiple programming languages, comprehensive documentation, and more.

10+ Generative AI Models – Ten or more industry-leading generative AI models support LimeWire APIs, including Stable Diffusion, DALL-E, BlueWillow, and many others.

Simple REST APIs – The interface is intuitive, facilitating seamless integration with third-party applications.

Multiple Programming Languages – These APIs provide support for a wide range of prominent programming languages, including but not limited to curl, Node.js, Python, Java, Ruby, and C#.

Documentation – The documentation is adequate, providing guidance for novices on using and implementing LimeWire APIs for additional use cases.

LimeWire AI API Limitations

The choice of LimeWire AI API AI models, upload limits, content availability, parallel requests, and other restrictions are listed below.

Can’t Select Preferred AI Models – At the moment, selecting an AI model is done automatically, so a user cannot get responses from the generative AI model of their choice.

Upload Limit – LimeWire prohibits uploading files exceeding 10 MB in size.

Content Availability Limit – The lifespan of user-generated and published content is restricted to 24 hours.

Capped Concurrent Requests – Due to the subscription plan, the number of concurrent API queries is restricted.

AI Creations – Like other AI tools, LimeWire AI generates imperfect images; several iterations may be necessary to obtain satisfactory results. In addition, the fact that these AI tools are trained using data produced by human artists raises concerns regarding their ethical underpinnings.

LimeWire AI API Pricing

There are four categories of subscriptions for the LimeWire AI API.

  • API Basic – $29.99/month
  • API Pro – $49.00/month
  • API Pro Plus – $250.00/month
  • API Enterprise – Custom
API Free API Basic API Pro API Pro Plus API Enterprise
Up to 10 Images/Day Up to 3,750 Images/Month Up to 7,500 Images/Month Up to 37,500 Images/Month Custom Limits
1 Parallel request 3 Parallel request 4 Parallel request 6 Parallel request Custom Limits
Limited Support Basic Support Prirority Support Prirority Support Enterprise support
Full AI Suite Full AI Suite Full AI Suite Full AI Suite
Custom Solutions & Early Feature Access

Getting Started With LimeWire AI API

The following procedures will help you start using the LimeWire AI API.

  • Proceed to developer.limewire.com and select the Sign Up Free link.
  • Click the Sign Up button next to the desired plan to select a plan. If you are still deciding, choose the free API plan; you can upgrade to the paid plans later.
  • Register with a single sign-on option from Google, Discord, or Facebook, or provide an email address.
  • The user ultimately arrives at the LimeWire user dashboard, where they can use LimeWire AI functionalities through the graphical user interface (AI Studio), administer API keys, and upgrade subscriptions, among other options.

Also, Check:

Conclusion:

Using the LimeWire AI API is a breeze. Its versatility in performing generative AI tasks is exemplified in this article. Using this AI API, you can access the most advanced text-to-image models in the industry. Allowing users to select their preferred AI models is the only area that could be improved. As soon as the “under development” video and audio generation goes live, creatives will find the LimeWire AI API irresistible. You can begin by registering to receive 300 free API credits per month, and if necessary, you can upgrade to a paid plan.

Related Posts

Leave a Reply

Your email address will not be published. Required fields are marked *