Build with SeekerPDF
Integrate AI-powered document intelligence into your applications. REST API, SDKs, and webhooks for seamless integration.
Multi-Agent API
Access all 11 specialized agents programmatically. Run document analysis, entity extraction, summarization, and more via REST API.
Webhooks
Receive real-time notifications when document processing completes. Integrate with your existing workflows.
API Keys
Secure authentication with scoped API keys. Rate limiting and usage analytics included.
CLI Tool
Command-line interface for batch processing and automation. Perfect for CI/CD pipelines.
Quick Start
Get up and running in minutes with our JavaScript SDK.
import { SeekerPDF } from '@seekerpdf/sdk';
const seeker = new SeekerPDF({
apiKey: process.env.SEEKERPDF_API_KEY
});
// Analyze a document with all agents
const result = await seeker.analyze({
document: './contract.pdf',
agents: ['classifier', 'entity', 'summary', 'sentiment'],
provider: 'openai' // or 'anthropic', 'google'
});
console.log(result.summary);
console.log(result.entities);
console.log(result.sentiment);Install with: npm install @seekerpdf/sdk
API Reference
RESTful API with JSON responses. Base URL: https://api.seekerpdf.com
| Method | Endpoint |
|---|---|
| POST | /v1/documents/analyze |
| POST | /v1/documents/chat |
| GET | /v1/documents/{id} |
| POST | /v1/ocr/scan |
| GET | /v1/agents |
Official SDKs
JavaScript
Available
Python
Available
Swift
Available
Go
Coming Soon
Ready to integrate?
Sign up for a free API key and start building with SeekerPDF today.