ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

gprophet-api

AI-powered stock prediction and market analysis for global markets

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/filwu8/gprophet-api
Or

G-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

ItemDescription
API Base URLhttps://www.gprophet.com/api/external/v1
AuthenticationX-API-Key header
Key Formatgp_sk_ prefix (e.g. gp_sk_live_a1b2c3...)
Response FormatJSON
BillingPoints-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

SkillEndpointPoints/Call
Stock PredictionPOST /predictions/predictCN 10, HK 15, US 20, Crypto 20
Algorithm ComparePOST /predictions/compareSingle prediction cost × number of algorithms
QuoteGET /market-data/quote5
HistoryGET /market-data/history5
SearchGET /market-data/search5
Technical AnalysisPOST /technical/analyze5
Fear & Greed IndexGET /sentiment/fear-greed5
Market OverviewGET /sentiment/market-overview5
Deep AnalysisPOST /analysis/comprehensive150
Task PollingGET /analysis/task/{task_id}0 (free)

Skill 1: Stock Price Prediction

Predict future stock/cryptocurrency price movements using AI algorithms.

Metadata

Author@filwu8
Stars2387
Views0
Updated2026-03-09
View Author Profile
AI Skill Finder

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 skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-filwu8-gprophet-api": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.