MeridAIn API
Access AI-verified news programmatically with credibility scores and source data.
Overview
The MeridAIn API provides programmatic access to AI-verified news articles. All responses include credibility scores, bias assessments, and source citations.
Base URL: https://meridain.vercel.app/api/v1
Authentication
The API is publicly accessible without authentication for basic usage. For higher rate limits, include an API key in your requests.
curl -H "X-API-Key: your_api_key" \ https://meridain.vercel.app/api/v1/articles
Subscribe to Pro or Enterprise for API keys with higher rate limits, or contact us for custom needs.
Rate Limits
| Tier | Limit | Window |
|---|---|---|
| Anonymous | 30 requests | 1 minute |
| With API Key | 100 requests | 1 minute |
Rate limit headers are included in all responses:
X-RateLimit-Limit- Your rate limitX-RateLimit-Remaining- Requests remainingX-RateLimit-Reset- Unix timestamp when limit resets
Endpoints
GET
/articlesRetrieve a list of articles.
Query Parameters
| limit | Number of articles (default: 10, max: 50) |
| category | Filter by category (ai, tech, science, etc.) |
| minCredibility | Minimum credibility score (0-100) |
Example Request
curl "https://meridain.vercel.app/api/v1/articles?limit=5&category=ai"
Example Response
{
"data": [
{
"id": "ai-industry-2026-outlook",
"type": "article",
"attributes": {
"title": "AI Industry Enters New Era...",
"slug": "ai-industry-2026-outlook",
"category": "ai",
"publishedAt": "2026-01-02T06:00:00Z",
"credibilityScore": 85,
"biasScore": 52,
"readTime": 3
},
"links": {
"self": "/api/v1/articles/ai-industry-2026-outlook",
"web": "/article/ai-industry-2026-outlook"
}
}
],
"meta": {
"total": 1,
"limit": 5,
"category": "ai"
}
}GET
/articles/:slugRetrieve a single article with full content and sources.
Example Request
curl "https://meridain.vercel.app/api/v1/articles/ai-industry-2026-outlook"
GET
/categoriesList all available categories with article counts.
Example Request
curl "https://meridain.vercel.app/api/v1/categories"
Errors
| Code | Description |
|---|---|
| 400 | Bad Request - Invalid parameters |
| 404 | Not Found - Article does not exist |
| 429 | Rate Limit Exceeded |
| 500 | Internal Server Error |
Terms of Use
- • API content is AI-generated and may contain errors
- • Attribution required: "Source: MeridAIn"
- • Do not present AI content as human journalism
- • Commercial use requires permission
- • See Terms of Service for full details