CodingMantra LogoCodingMantra
GalleryProductsPortfolioServicesGamesPricingContact
CodingMantra LogoCodingMantra

Providing business solutions for small and medium-sized businesses and helping them to grow.

WhatsApp ChannelX / TwitterLinkedInInstagramFacebookGitHubYouTube

Company

  • About Us
  • Services
  • Products
  • Portfolio
  • Pricing
  • Blog
  • API Docs
  • Contact Us

Top Tools

  • All Tools
  • Image Gallery
  • Image Tools
  • Digital Marketing
  • Financial Tools
  • Games
  • SEO Tools

Legal

  • Privacy Policy
  • Terms & Conditions
  • Return Policy
  • Deals
  • Sitemap

© 2026 CodingMantra. All Rights Reserved.

    1. Home
    2. API Documentation
    3. Image Tools
    4. Logo Creator

    Logo Creator API

    Generate unique, professional logo designs tailored to your brand identity.

    GET
    /api/image/logo-creator-prompts

    Retrieve a list of pre-defined logo styles and design concepts.

    Example Request

    curl -X GET 'https://codingmantra.com/api/image/logo-creator-prompts'

    Example Response

    {
      "data": [
        {
          "id": "minimalist-geometric",
          "title": "Geometric Shapes",
          "categoryId": "minimalist",
          "categoryTitle": "Minimalist & Modern",
          "description": "Minimalist geometric logo, clean lines..."
        },
        // ... more prompts
      ]
    }

    POST
    /api/image/logo-creator

    Generate a logo based on company details and style preferences.

    Request Body

    FieldTypeDescription
    companyNamestringRequired. The name of the brand or company.
    promptIdstringOptional. The ID/value of a pre-defined style. Get available IDs from the `/api/image/logo-creator-prompts` endpoint.
    stylePromptstringOptional. Description of the desired visual style. (Required if `promptId` is omitted).
    subtitlestringOptional. Slogan or tagline.
    industrystringOptional. The industry of operation.
    ideasstringOptional. Keywords or concepts to include.
    colorsstringOptional. Preferred color palette.
    referenceImagesArray of ObjectsOptional. Array of objects with `dataUrl` or `url` containing images to add into the logo.
    referenceImagestringOptional. Data URI or URL of a style reference image.
    modelstringOptional. `'standard'` (default) or `'pro'`.
    aspectRatiostringOptional. Default `'1:1'`.
    outputResultstringOptional. `'base64'` (default) or `'url'`.

    Example Request

    curl -X POST 'https://codingmantra.com/api/image/logo-creator' \
         -H 'Content-Type: application/json' \
         -H 'Authorization: Bearer YOUR_API_KEY' \
         -d '{
              "companyName": "TechNova",
              "subtitle": "Innovating Future",
              "promptId": "minimalist-geometric",
              "colors": "Neon blue and silver"
            }'

    Example Response

    {
      "data": {
        "photoDataUri": "data:image/png;base64,..."
      }
    }

    On This Page

    GET PromptsPOST Generate LogoFAQ

    Frequently Asked Questions