{
  "openapi": "3.0.1",
  "info": {
    "title": "Ai Business Card Generator Actor",
    "description": "Generate professional business cards automatically using AI. This actor extracts details, formats layouts, designs templates, and outputs ready-to-use digital business cards. Ideal for teams automating branding workflows at scale.",
    "version": "0.0",
    "x-build-id": "fVMyWyaxNXBq8kX6H"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/amaranth_nylon~Ai-business-card-generator-actor/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-amaranth_nylon-Ai-business-card-generator-actor",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/acts/amaranth_nylon~Ai-business-card-generator-actor/runs": {
      "post": {
        "operationId": "runs-sync-amaranth_nylon-Ai-business-card-generator-actor",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor and returns information about the initiated run in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/runsResponseSchema"
                }
              }
            }
          }
        }
      }
    },
    "/acts/amaranth_nylon~Ai-business-card-generator-actor/run-sync": {
      "post": {
        "operationId": "run-sync-amaranth_nylon-Ai-business-card-generator-actor",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "inputSchema": {
        "type": "object",
        "required": [
          "name",
          "jobTitle",
          "company",
          "email",
          "phone"
        ],
        "properties": {
          "name": {
            "title": "Full Name",
            "type": "string",
            "description": "Your full name as it should appear on the business card"
          },
          "jobTitle": {
            "title": "Job Title",
            "type": "string",
            "description": "Your professional title or position"
          },
          "company": {
            "title": "Company Name",
            "type": "string",
            "description": "Company or organization name"
          },
          "email": {
            "title": "Email Address",
            "pattern": "^[^@]+@[^@]+\\.[^@]+$",
            "type": "string",
            "description": "Professional email address"
          },
          "phone": {
            "title": "Phone Number",
            "type": "string",
            "description": "Contact phone number"
          },
          "website": {
            "title": "Website",
            "type": "string",
            "description": "Company or personal website URL (optional)"
          },
          "address": {
            "title": "Address",
            "type": "string",
            "description": "Business address (optional)"
          },
          "industry": {
            "title": "Industry",
            "enum": [
              "technology",
              "finance",
              "healthcare",
              "creative",
              "consulting",
              "legal",
              "real-estate",
              "education",
              "hospitality",
              "other"
            ],
            "type": "string",
            "description": "Industry or business sector for intelligent template selection",
            "default": "technology"
          },
          "colorScheme": {
            "title": "Color Scheme Preference",
            "enum": [
              "auto",
              "professional-blue",
              "elegant-black",
              "modern-teal",
              "creative-purple",
              "warm-orange",
              "nature-green",
              "corporate-gray"
            ],
            "type": "string",
            "description": "Preferred color scheme for the business card",
            "default": "auto"
          },
          "customColors": {
            "title": "Custom Colors",
            "type": "object",
            "description": "Custom brand colors (optional, overrides color scheme)",
            "properties": {
              "primary": {
                "title": "Primary Color",
                "type": "string",
                "description": "Primary brand color (hex code)",
                "example": "#0066CC"
              },
              "secondary": {
                "title": "Secondary Color",
                "type": "string",
                "description": "Secondary brand color (hex code)",
                "example": "#FF6600"
              },
              "accent": {
                "title": "Accent Color",
                "type": "string",
                "description": "Accent color (hex code)",
                "example": "#00CC99"
              }
            }
          },
          "designVariants": {
            "title": "Number of Design Variants",
            "minimum": 1,
            "maximum": 5,
            "type": "integer",
            "description": "How many different design variations to generate",
            "default": 3
          },
          "outputFormats": {
            "title": "Output Formats",
            "uniqueItems": true,
            "type": "array",
            "description": "Select which file formats to generate",
            "items": {
              "type": "string",
              "enum": [
                "png",
                "pdf"
              ]
            },
            "default": [
              "png",
              "pdf"
            ]
          },
          "cardSize": {
            "title": "Card Size",
            "enum": [
              "standard-us",
              "standard-eu",
              "square",
              "mini"
            ],
            "type": "string",
            "description": "Business card dimensions",
            "default": "standard-us"
          },
          "includeLogo": {
            "title": "Include Logo",
            "type": "boolean",
            "description": "Include a company logo placeholder (you can add your own later)",
            "default": true
          },
          "includeQRCode": {
            "title": "Include QR Code",
            "type": "boolean",
            "description": "Add a QR code linking to your website or contact info",
            "default": false
          }
        }
      },
      "runsResponseSchema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "actId": {
                "type": "string"
              },
              "userId": {
                "type": "string"
              },
              "startedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "finishedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "status": {
                "type": "string",
                "example": "READY"
              },
              "meta": {
                "type": "object",
                "properties": {
                  "origin": {
                    "type": "string",
                    "example": "API"
                  },
                  "userAgent": {
                    "type": "string"
                  }
                }
              },
              "stats": {
                "type": "object",
                "properties": {
                  "inputBodyLen": {
                    "type": "integer",
                    "example": 2000
                  },
                  "rebootCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "restartCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "resurrectCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "computeUnits": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "options": {
                "type": "object",
                "properties": {
                  "build": {
                    "type": "string",
                    "example": "latest"
                  },
                  "timeoutSecs": {
                    "type": "integer",
                    "example": 300
                  },
                  "memoryMbytes": {
                    "type": "integer",
                    "example": 1024
                  },
                  "diskMbytes": {
                    "type": "integer",
                    "example": 2048
                  }
                }
              },
              "buildId": {
                "type": "string"
              },
              "defaultKeyValueStoreId": {
                "type": "string"
              },
              "defaultDatasetId": {
                "type": "string"
              },
              "defaultRequestQueueId": {
                "type": "string"
              },
              "buildNumber": {
                "type": "string",
                "example": "1.0.0"
              },
              "containerUrl": {
                "type": "string"
              },
              "usage": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "integer",
                    "example": 1
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "usageTotalUsd": {
                "type": "number",
                "example": 0.00005
              },
              "usageUsd": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "number",
                    "example": 0.00005
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}