Skip to main content

Getting Started

This page gets you from zero to one successful request.

Step 1: Get API Key

  1. Go to RapidAPI.
  2. Search for Parseflow.
  3. Subscribe to a plan (free tier available).
  4. Copy your RapidAPI key.

Step 2: Make Request

curl -X POST https://docflow.p.rapidapi.com/process \
-H "x-rapidapi-key: YOUR_RAPIDAPI_KEY" \
-H "x-rapidapi-host: docflow.p.rapidapi.com" \
-F "text=Hello world. This is a test document." \
-F "chunk_size=800"

Step 3: Response

{
"chunks": [
{
"index": 0,
"text": "Hello world. This is a test document."
}
],
"metadata": {
"length": 37,
"chunks": 1
}
}

Step 4: Notes

  • Files are not stored.
  • Free tier is rate limited.
  • Large files can be slower on free infrastructure.

Next page: API