Content
Create and manage community posts and content.
import Layout from "@/components/Layout"; import SEO from "@/components/SEO"; import { Breadcrumbs } from "@/components/dev-platform/Breadcrumbs"; import { ThreeColumnLayout } from "@/components/dev-platform/layouts/ThreeColumnLayout"; import { ApiEndpointCard } from "@/components/dev-platform/ui/ApiEndpointCard"; import { CodeTabs } from "@/components/dev-platform/CodeTabs"; import { Card } from "@/components/ui/card"; import { Badge } from "@/components/ui/badge"; import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs"; import { Key, Activity, User, Shield, Database } from "lucide-react"; const navigationSections = [ { id: "authentication", title: "Authentication", icon: Key }, { id: "api-keys", title: "API Keys", icon: Key }, { id: "users", title: "Users", icon: User }, { id: "content", title: "Content", icon: Database }, { id: "rate-limits", title: "Rate Limits", icon: Shield }, ]; export default function ApiReference() { const sidebarContent = (
All requests require authentication via API key in the Authorization header.
Authorization: Bearer aethex_sk_...
https://aethex.dev/api
The AeThex API allows you to programmatically interact with the platform. Access user data, create content, manage community features, and more.
Simple HTTP requests with JSON responses
API key authentication with rate limiting
Access all platform features programmatically
Authenticate your requests using an API key in the Authorization header.
Manage your API keys programmatically.
Access user profiles and data.
Create and manage community posts and content.
API requests are rate limited to ensure fair usage and platform stability.
Every API response includes rate limit information in the headers:
X-RateLimit-Limit:
60
X-RateLimit-Remaining:
42
X-RateLimit-Reset:
1704672000
The API uses conventional HTTP response codes and returns JSON error objects.
The request was invalid or missing required parameters.
Invalid or missing API key.
Valid API key but insufficient permissions for this operation.
The requested resource does not exist.
Rate limit exceeded. Check Retry-After header.
Something went wrong on our end. Try again or contact support.