gprophet-api
AI-powered stock prediction and market analysis for global markets
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/filwu8/gprophet-apiG-Prophet AI Skills Documentation
Stock prediction and market analysis capabilities for AI agents
Overview
G-Prophet is an AI-powered stock prediction platform that exposes its core capabilities through an external API for other AI agent systems. It supports global markets (China A-shares, US stocks, HK stocks, Crypto) and provides AI prediction, technical analysis, market sentiment, and deep analysis Skills.
Basic Information
| Item | Description |
|---|---|
| API Base URL | https://www.gprophet.com/api/external/v1 |
| Authentication | X-API-Key header |
| Key Format | gp_sk_ prefix (e.g. gp_sk_live_a1b2c3...) |
| Response Format | JSON |
| Billing | Points-based, each call consumes corresponding points |
Authentication
All requests must include an API Key in the HTTP header:
X-API-Key: gp_sk_live_your_api_key_here
API Keys can be created in the G-Prophet platform under "Settings → API Key Management".
Security Recommendations
- Store API keys in environment variables (
GPROPHET_API_KEY), not in code - Use test/limited-scope keys for development and evaluation
- Monitor usage and billing regularly at https://www.gprophet.com/dashboard
- Rotate keys periodically and revoke compromised keys immediately
- Never commit API keys to version control or share them publicly
Unified Response Format
Success Response
{
"success": true,
"data": { ... },
"metadata": {
"request_id": "req_abc123",
"timestamp": "2026-02-18T10:30:00Z",
"processing_time_ms": 1250,
"api_version": "v1"
},
"error": null
}
Error Response
{
"success": false,
"data": null,
"metadata": { ... },
"error": {
"code": "INVALID_SYMBOL",
"message": "Stock symbol 'XXXXX' not found",
"details": {}
}
}
Points Cost
| Skill | Endpoint | Points/Call |
|---|---|---|
| Stock Prediction | POST /predictions/predict | CN 10, HK 15, US 20, Crypto 20 |
| Algorithm Compare | POST /predictions/compare | Single prediction cost × number of algorithms |
| Quote | GET /market-data/quote | 5 |
| History | GET /market-data/history | 5 |
| Search | GET /market-data/search | 5 |
| Technical Analysis | POST /technical/analyze | 5 |
| Fear & Greed Index | GET /sentiment/fear-greed | 5 |
| Market Overview | GET /sentiment/market-overview | 5 |
| Deep Analysis | POST /analysis/comprehensive | 150 |
| Task Polling | GET /analysis/task/{task_id} | 0 (free) |
Skill 1: Stock Price Prediction
Predict future stock/cryptocurrency price movements using AI algorithms.
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-filwu8-gprophet-api": {
"enabled": true,
"auto_update": true
}
}
}