Text Splitter

Split texts into chunks

Request Information

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

HTTP Headers
Name
Value

Authorization

API_KEY

Content-type

application/json


Request Payload
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())

Last updated