Skip to main content
API access requires the Agent AI subscription plan.

Introduction

The Alpes Sniper API provides programmatic access to signals and performance data. Use it to integrate signals into your trading bots, custom dashboards, or automated systems.

Base URL

https://api.alpessniper.com/v1

Features

Real-Time Signals

Access signals as they’re generated

Historical Data

Query past signals and performance

Webhooks

Get notified when new signals arrive

Performance Metrics

Access win rates and ROI data

Quick Start

1

Get API Key

Subscribe to Agent AI plan and generate your API key in Profile settings
2

Authenticate

Include your API key in request headers
3

Make Requests

Call API endpoints to fetch signals and data

Example Request

curl -X GET "https://api.alpessniper.com/v1/signals" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"

Response Format

All responses are JSON formatted:
{
  "success": true,
  "data": [...],
  "meta": {
    "total": 100,
    "page": 1,
    "per_page": 20
  }
}

Error Handling

Errors return appropriate HTTP status codes:
CodeMeaning
200Success
400Bad Request - Invalid parameters
401Unauthorized - Invalid or missing API key
403Forbidden - Insufficient permissions
429Too Many Requests - Rate limit exceeded
500Server Error - Contact support

Next Steps