REST API v1.0
Build with Techsy.News API
Access our comprehensive tech news database programmatically. Perfect for apps, integrations, and custom solutions.
Fast & Reliable
99.9% uptime SLA with response times under 100ms
Secure
OAuth 2.0 authentication and encrypted connections
Scalable
Handle millions of requests with our CDN infrastructure
Quick Start
Authentication
Include your API key in the Authorization header:
curl -H "Authorization: Bearer YOUR_API_KEY" \
https://api.techsy.news/v1/articlesAPI Endpoints
GET
/api/v1/articlesRetrieve a list of articles with pagination and filtering
Parameters:
page (integer) - Page number (default: 1)limit (integer) - Items per page (default: 20, max: 100)category (string) - Filter by category slugsearch (string) - Search queryGET
/api/v1/articles/{slug}Get a single article by slug
Parameters:
slug (string) - Article slug identifierGET
/api/v1/categoriesGet all available categories
GET
/api/v1/trendingGet trending articles based on views and engagement
Parameters:
limit (integer) - Number of articles (default: 10)Example Response
{
"data": [
{
"id": "uuid",
"title": "Article Title",
"slug": "article-slug",
"excerpt": "Brief description...",
"cover_image": "https://...",
"category": {
"id": "uuid",
"name": "Artificial Intelligence",
"slug": "artificial-intelligence"
},
"published_at": "2025-10-01T12:00:00Z",
"views": 1234,
"likes": 56
}
],
"meta": {
"page": 1,
"limit": 20,
"total": 100
}
}Rate Limits
Free Tier: 100 requests/hour
Pro Tier: 1,000 requests/hour
Enterprise: Custom limits
Ready to Start Building?
Get your API key today and start integrating Techsy.News into your applications.
Request API Access