Convert
Convert URLs to clean Markdown
URL to Markdown
Extract article content from any URL
Daily limit: 20 (sign in for more)
API Documentation
Integrate URL to Markdown conversion into your applications.
Endpoint
POSThttps://nevaberry.com/api/convert
Authentication
Include your API key in the Authorization header:
Authorization: Bearer YOUR_API_KEYCreate API Keyto use the API
cURL Example
terminal
curl -X POST https://nevaberry.com/api/convert \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"input": {
"type": "url",
"content": "article",
"value": "https://example.com/article"
},
"output": {
"type": "markdown"
},
"options": {
"article": {
"stripHeaderFooter": true
}
}
}'Response Format
response.json
{
"success": true,
"result": "# Article Title\n\nArticle content...",
"metadata": {
"inputType": "url",
"inputContent": "article",
"outputType": "markdown",
"processingTimeMs": 523,
"creditsUsed": 0,
"cached": false,
"sourceTitle": "Article Title",
"sourceByline": "Author Name",
"sourceSiteName": "example.com"
}
}Rate Limits
API key requests use your account's daily conversion limit:
- Free Tier: 20/day
- Plus: 200/day
- Pro: 2,000/day
When daily limit is exceeded, 1 credit is used per conversion