Skip to content
Seal
Esc
↑↓navigate↵open⌘Jpreview

Split a draft PDF into child documents by page ranges

POST/documents/split
Authorization
AuthorizationBearer token · headerrequired

Pass your API key as a Bearer token. API keys are scoped to specific operations — configure scopes in your organization's Settings → Developer → API Keys.

Request body
requiredapplication/json
idstringrequired
splitsobject[]required
Show properties
Array of object
titlestringrequired
pagesinteger[]required
Responses
201

Child documents created

Try it
Server
Authorization
Bodyapplication/json
Request
curl -X POST "https://api.seal.nyc/api/v1/documents/split" \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
  "id": "string",
  "splits": [
    {
      "title": "string",
      "pages": [
        0
      ]
    }
  ]
}'
Response
Child documents created