This API allows you to generate HTML, CSS, and JavaScript code for a website based on a prompt. You can retrieve the code by calling the API with an API key, website name, and prompt.
The API endpoint is:
https://ai.htmlwaveapp.com/api
The API requires the following parameters:
Name | Description |
---|---|
key | The API key for your account. |
type | The type of the content you want to generate. use full-page to generate a full page, or element for a single component. |
website-name | The name of the website you want to generate code for. Don't add this parameter if you are generating a single component. |
prompt | The prompt for the website you want to generate code for. This can be any text that describes the website, such as "a personal portfolio with blue colors". |
The API returns a JSON object with the following fields:
Name | Description |
---|---|
status | A boolean value indicating whether the API call was successful. |
html | The HTML code for the website/component. |
css | The CSS code for the website/component. |
javascript | The JavaScript code for the website/component. |
error | If the API call was not successful, this field will contain an error message explaining why. |
Here are some examples of how to call the API in some different programming languages: