Convert news articles, blog posts and web content into structured JSON format. Perfect for content aggregation, analysis, and data-driven applications.
Transform any article into structured data ready for your systems:
Our article parser supports multiple content sources:
{ "article": { "title": "Top Wall Street analysts suggest these stocks", "published": "2024-12-29T08:59:00-05:00", "author": "TipRanks.com Staff", "content": [ { "stock": { "name": "Salesforce", "symbol": "CRM", "analyst": { "name": "Gregg Moskowitz", "firm": "Mizuho", "rating": "buy", "priceTarget": 425, "comment": "impressive innovation" } } } ], "metadata": { "category": "Finance", "tags": ["Stocks", "Analysis"], "readTime": "5 minutes" } } }
curl -X POST \
-H "Authorization: Token YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"urls": [
"https://example.com/news/article1",
"https://example.com/news/article2"
]
}' \
https://monkt.com/api/transformations/
Response:
{
"uuid": "278fe9a7-9007-4876-804d-2c294d19bda2",
"status": "processing",
"created": "2024-03-21T14:22:31Z"
}
curl -X POST \
-H "Authorization: Token YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"name": "News Article Schema",
"schema": {
"type": "object",
"properties": {
"title": {"type": "string"},
"author": {"type": "string"},
"published_date": {"type": "string", "format": "date-time"},
"content": {
"type": "object",
"properties": {
"stocks": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {"type": "string"},
"symbol": {"type": "string"},
"analyst": {
"type": "object",
"properties": {
"name": {"type": "string"},
"rating": {"type": "string"},
"price_target": {"type": "number"}
}
}
}
}
}
}
}
}
}
}' \
https://monkt.com/api/schemas/
curl \
-H "Authorization: Token YOUR_API_TOKEN" \
https://monkt.com/api/transformations/278fe9a7-9007-4876-804d-2c294d19bda2/json/309e3c16-166c-47c5-afbe-e341645994a5/
Response:
{
"articles": [
{
"title": "Top Wall Street analysts suggest these stocks",
"author": "TipRanks.com Staff",
"published_date": "2024-03-21T08:59:00-05:00",
"content": {
"stocks": [
{
"name": "Salesforce",
"symbol": "CRM",
"analyst": {
"name": "Gregg Moskowitz",
"firm": "Mizuho",
"rating": "buy",
"price_target": 425
}
}
]
}
}
]
}
We support various content sources including news websites, blog posts, RSS feeds, and content management systems. Our system can handle content in multiple languages and from different publishing platforms.
Our AI-powered system achieves over 95% accuracy in content extraction. We use advanced NLP techniques to identify key information like titles, authors, dates, and main content while filtering out ads and irrelevant elements.
Yes! You can define custom schemas to extract only the fields you need. This allows you to match your existing system's requirements and integrate seamlessly with your content workflow.
Our API provides standardized JSON output that can be integrated with popular CMS platforms and content aggregators. We provide SDKs and detailed integration guides for major programming languages.
We take security seriously. All requests are encrypted using TLS 1.3, and we process data in isolated environments. We are GDPR compliant and automatically delete processed content after 24 hours.
API access is available starting with our Pro plan, which includes up to 1,000 transformations per month. Enterprise plans offer higher limits up to 5 million transformations monthly with custom integration support. Free accounts can test the service through our web interface with limited transformations.
Yes! You can choose what works best for you. Our user-friendly dashboard provides a simple interface for manual conversions and monitoring, while our API enables automated integration into your systems. Both methods support the same features and conversion quality.
Step-by-step guides for common document processing scenarios and AI integrations.
Extract key information from invoices and convert them into structured JSON for automated processing.
Transform articles into structured JSON with metadata, content sections, and citations.
Convert academic papers into structured JSON with sections, references, and figures.
Integrate document processing capabilities into your AI agents workflow.
Prepare documents for LLM fine-tuning with proper formatting and structure.
New processing recipes and workflows are being added regularly.
We support a wide range of document formats including PDF, Word (DOC, DOCX), PowerPoint (PPT, PPTX), Excel (XLS, XLSX), HTML, and plain text files. Our system can process both text and embedded images within these documents.
Pro users can define custom JSON schemas to specify exactly how they want their data structured. You can either use our automated schema detection or provide your own schema definition. This ensures your output data matches your exact requirements.
All documents are encrypted both in transit and at rest. We maintain secure storage for your processed documents, allowing you to access them anytime. Documents are automatically deleted after 30 days unless you specify otherwise.
Pro and Enterprise users get full API access with comprehensive documentation. You can integrate our document processing directly into your workflow, automate batch processing, and retrieve transformed documents programmatically.
You can upload multiple documents at once through our interface or API. Our system processes them in parallel, maintaining consistent formatting across all outputs. Progress tracking and notifications are available for batch jobs.
Our system automatically detects and processes images within documents. We can extract image content, generate descriptive text, and include them in your markdown or JSON output in a format suitable for AI/LLM processing.
All users get access to our documentation and email support. Pro users receive priority support with faster response times. Enterprise customers get dedicated support teams and custom SLAs to meet their specific needs.
Yes! You can try our service with a sample document to see the quality of our markdown and JSON outputs. This helps you understand how our system handles document formatting and structure before committing to a subscription.