text-widthText Splitter

Split texts into chunks

Request Information

POST https://exorion.xyz/api/text-splitter

chevron-rightHTTP Headershashtag
Name
Value

Authorization

API_KEY

Content-type

application/json


chevron-rightRequest Payloadhashtag
Name
Value

text

"text"

Code Examples

Request.py
import requests

url = "https://exorion.xyz/api/text-splitter"
headers = {
    "Authorization": "API_KEY", # Your Server API Key from /settings
    "Content-Type": "application/json"
}
payload = {
    "text": "The quick brown fox jumped over the lazy dog while eating breakfast" # All Formats: png, jpeg, webp
}

res = requests.post(url, headers=headers, json=payload)
print(res.json())
circle-exclamation

Last updated