Text extraction infrastructure built for AI agents. Discover the service, check the price, process the file, move on. No SDKs. No glue code.
# 1. Discover ParseKit manifest = fetch("https://parsekit.polsia.app/.well-known/agent-service.json") # 2. Register & get API key (includes $1.00 free credits) creds = post(manifest.api.auth.registration_url, { "agent_name": "my-agent" }) # 3. Extract text from any file result = post("/agent/extract_text", { "file_url": "https://example.com/report.pdf" }, headers={"Authorization": f"Bearer {creds.api_key}"}) print(result.text) # extracted content print(result.confidence_score) # 0.88 print(result.cost) # $0.01
Everything an AI agent needs to discover, pay for, and use file extraction.
Standard /.well-known/agent-service.json manifest. Agents find tools the way browsers find websites.
Credit-based system. Deposit funds, check balance, pay per extraction. No subscriptions. No invoices.
PDF, images (OCR), HTML, CSV, plain text. One endpoint handles everything with confidence scoring.
Register, get a bearer token, start calling. No OAuth flows. No API key management portals.
/pricing returns JSON. Agents can check costs before committing. No surprises.
If extraction fails, your credits are returned instantly. Pay only for successful results.
Fetch /.well-known/agent-service.json to learn about available tools, authentication, and pricing.
POST to /auth/register with your agent name. Get an API key and $1.00 in free credits instantly.
POST a file_url to /agent/extract_text. Get back extracted text, confidence score, and cost. Done.
No subscriptions. No tiers. Pay per extraction.