/text_preprocessing

Route for preprocessing of a big-size plain text prior to text2table endpoint.

POST https://text2table.p.rapidapi.com/t2t/text_preprocessing

The pre-processing endpoint is designed to prepare your text data for the /text2table transformation, especially when dealing with large text bodies that exceed the 3900 token limit of the text2table model.

Headers

NameTypeDescription

X-RapidAPI-Key*

String

Your API key. Where can I get it?

X-RapidAPI-Host*

String

text2table.p.rapidapi.com

content-type*

String

application/json

Request Body

NameTypeDescription

text*

String

Pass text for processing via this parameter.

columns

Strings list

Column names for the result table. Check out more details.

split

int

Determines the token count for each text chunk in the preprocessing phase. Check out more details.

Indicates that your request has been successfully processed, and the response will include a table with the data from the given text. Check out more details on the response.

Last updated