{
    "openapi": "3.0.3",
    "info": {
        "description": "Generate and search brandable domain names from a business description.",
        "version": "1.0.0",
        "title": "Atom Smart Search API",
        "contact": {
            "email": "service@atom.com"
        },
        "termsOfService": "https://www.atom.com/terms"
    },
    "servers": [
        {
            "url": "https://www.atom.com/api/marketplace",
            "description": "Production"
        }
    ],
    "tags": [
        {
            "name": "Smart Search Apis",
            "description": "All the apis to manage your domain marketplace"
        }
    ],
    "externalDocs": {
        "description": "Atom API docs",
        "url": "https://www.atom.com/api-docs"
    },
    "paths": {
        "/smart-domain-search": {
            "get": {
                "tags": [
                    "Smart Search Apis"
                ],
                "summary": "SmartDomainSearch",
                "description": "SmartDomainSearch",
                "operationId": "SmartDomainSearch",
                "parameters": [
                    {
                        "name": "api_token",
                        "in": "query",
                        "required": true,
                        "description": "API Key to get the details",
                        "schema": {
                            "type": "string",
                            "default": ""
                        }
                    },
                    {
                        "name": "user_id",
                        "in": "query",
                        "required": true,
                        "description": "UserId of the API Token",
                        "schema": {
                            "type": "string",
                            "default": ""
                        }
                    },
                    {
                        "name": "keyword",
                        "in": "query",
                        "required": true,
                        "description": "Describe your business (Ex: Beauty Brand)",
                        "schema": {
                            "type": "string",
                            "default": ""
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/SmartDomainSearchResponse"
                                }
                            }
                        }
                    }
                }
            }
        }
    },
    "components": {
        "securitySchemes": {
            "apiToken": {
                "type": "apiKey",
                "in": "query",
                "name": "api_token",
                "description": "Seller / partner / appraisal / trademark API token from https://www.atom.com/dashboard/seller/api-access"
            }
        },
        "schemas": []
    }
}