POST https://api.i-as.dev/api/text-style
The request body should contain a JSON object with the following structure:
{
"text": "string"
}
Here is an example of how to send a request to the Text Style API with a sample text:
POST https://api.i-as.dev/api/text-style
Body:
{
"text": "Hello, World!"
}
The API returns a JSON array containing a list of different styles applied to the input text. Each object contains the style
name and the text
with the applied style.
[
{
"style": "bold",
"text": "Hello, World!"
},
{
"style": "italic",
"text": "Hello, World!"
},
// More data
]
[
{
"style": "bold",
"text": "Hello, World!"
},
{
"style": "italic",
"text": "Hello, World!"
}
]
This API allows you to retrieve multiple styled versions of the provided text, such as bold, italic, and others.