Api
11 articles
Articles
Api Endpoints
Complete reference of available API endpoints. https://api.0xapogee.com/api/v1 --- Manage smart contract source code. | Method | Endpoint | Description |...
Api Examples
curl examples for common Apogee API operations. --- bash curl -X POST "https://api.0xapogee.com/api/v1/contracts/upload" \ -H "Authorization: Bearer...
Api Key
Secure your API requests with proper authentication. Apogee API uses Bearer token authentication with API keys. Every API request must include a valid API key...
Api Script Examples
Script examples for common Apogee API operations. bash #!/bin/bash APIURL="https://api.0xapogee.com/api/v1" APIKEY="YOURAPIKEY" echo "Uploading contract..."...
Filtering
Filter and sort API results. Many endpoints support filtering via query parameters. bash GET /api/v1/vulnerabilities?severity=critical GET...
Pagination
Navigate through large result sets efficiently. The API supports two pagination styles: - Cursor-based (recommended) - Stable, efficient for large datasets -...
Rate Limits
Understand API rate limiting and how to handle it. Apogee API implements rate limiting to ensure fair usage and platform stability. Limits vary by plan. --- >...
Requests Responses
API request format and response handling. | Header | Required | Description | |--------|----------|-------------| | Authorization | Yes | Bearer YOURAPIKEY | |...
Sdk Overview
Official SDKs: | Language | Package | |----------|---------| | JavaScript/Node | @0xapogee/sdk | | Python | 0xapogee | | Go | github.com/0xapogee/go-sdk |...
Troubleshooting
Common errors and solutions. Error: json { "error": { "code": "UNAUTHORIZED", "message": "Missing or invalid API key" } } Causes: - Missing...
Webhooks
Receive real-time notifications for events: bash POST /api/v1/webhooks { "url": "https://your-server.com/webhook", "events": ["scan.completed",...