Dashboard

Calls Today
0
of 100 daily limit
This Month
0
total calls
Tier
FREE
100 calls/day
API Status
Operational
All systems normal
Usage — Last 7 Days
Loading usage data...
Top Tools
No calls yet
MCP Configuration
// .claude/mcp.json { "mcpServers": { "meacheal-supply-chain": { "url": "https://api.meacheal.ai/mcp", "headers": { "Authorization": "Bearer YOUR_KEY" } } } }

API Keys

Manage your API keys. Each key has its own label, spending limit, and usage tracking.

Label Key Tier Daily Limit Last Used Created Actions
Loading keys...
Configuration Snippets
// .claude/mcp.json { "mcpServers": { "meacheal-supply-chain": { "url": "https://api.meacheal.ai/mcp", "headers": { "Authorization": "Bearer YOUR_KEY" } } } }
curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.meacheal.ai/v1/suppliers?province=广东"
# ChatGPT Actions — OpenAPI spec URL: # https://api.meacheal.ai/openapi.json # # Authentication: API Key (Bearer) # Header name: Authorization # Value: Bearer YOUR_KEY

Request Logs

Time Method Endpoint Key Status Latency Country Results
Loading request logs...

Usage Analytics

Daily Limit
Today's usage 0 / 100
Daily Usage — Last 7 Days
Loading...
Usage by Tool
No calls yet
By Endpoint
Loading...
By API Key
Loading...
By Country
Loading...
By Status Code
Loading...

Workbench

Build and test API requests using your active key. All calls are authenticated automatically.

Request
Response
Response will appear here.

Rate Limits

Your current tier and limits. Rate limits are enforced per API key.

Current Tier
FREE
Daily Limit
requests per day
Burst
requests per minute
Concurrent
parallel connections
Tier Comparison
Feature Free Pro Team Enterprise
Loading...
Need higher limits?
Enterprise plans include custom quotas, SLA, and dedicated support.
Contact us to upgrade

Team

Members of this workspace. Invites are emailed instantly.

Email Role Joined Actions
Loading team members...

Workspaces

Separate environments for different projects or organizations.

Name Role Owner Created Actions
Loading workspaces...

Usage Alerts

Get notified by email when your usage crosses a threshold of your daily limit.

Threshold Notify Email Status Created Actions
Loading alerts...

Quick Start

Ready-to-use code examples with your API key. Copy and run.

# Search suppliers in Guangdong curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.meacheal.ai/v1/suppliers?province=广东" # Search fabrics by category curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.meacheal.ai/v1/fabrics?category=knit" # Get supplier detail curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.meacheal.ai/v1/suppliers/SUP001"
import requests API_KEY = "YOUR_KEY" BASE = "https://api.meacheal.ai/v1" headers = {"Authorization": f"Bearer {API_KEY}"} # Search suppliers resp = requests.get(f"{BASE}/suppliers", headers=headers, params={ "province": "广东", "limit": 10 }) suppliers = resp.json()["results"] for s in suppliers: print(f"{s['name']} — {s['city']}, workers: {s.get('worker_count', 'N/A')}") # Search fabrics resp = requests.get(f"{BASE}/fabrics", headers=headers, params={ "category": "knit" }) print(resp.json())
const API_KEY = "YOUR_KEY"; const BASE = "https://api.meacheal.ai/v1"; const headers = { Authorization: `Bearer ${API_KEY}` }; // Search suppliers const res = await fetch(`${BASE}/suppliers?province=广东&limit=10`, { headers }); const { results } = await res.json(); results.forEach((s: any) => { console.log(`${s.name} — ${s.city}, workers: ${s.worker_count ?? "N/A"}`); }); // Search fabrics const fabrics = await fetch(`${BASE}/fabrics?category=knit`, { headers }); console.log(await fabrics.json());
// .claude/mcp.json — Add this to Claude Desktop or Claude Code { "mcpServers": { "meacheal-supply-chain": { "url": "https://api.meacheal.ai/mcp", "headers": { "Authorization": "Bearer YOUR_KEY" } } } } // Then ask Claude: // "Find sportswear factories in Guangdong with BSCI certification" // "What knit fabrics work for t-shirts?" // "Compare Humen vs Shishi industrial clusters"
# Step 1: Create a Custom GPT or use Actions # OpenAPI spec: https://api.meacheal.ai/openapi.json # Step 2: Configure Authentication # Type: API Key # Auth Type: Bearer # Header name: Authorization # API Key: YOUR_KEY # Step 3: Test with a prompt # "Search for denim fabric suppliers in Shaoxing"

Settings

Current Workspace
Name
Your Role MEMBER
Owner
Account Information
Email
Tier FREE
Member Since
Daily Limit 100
Billing
Current Plan FREE
Plans
Free
$0
Forever
  • 100 calls/day
  • All endpoints
  • Community support
Current Plan
Pro
$29
per month
  • 5,000 calls/day
  • All endpoints
  • Email support
  • 99.5% SLA
Team
$99
per month
  • 20,000 calls/day
  • All endpoints
  • Priority support
  • 99.5% SLA
Enterprise
$499
per month
  • 100,000 calls/day
  • All endpoints
  • Dedicated support
  • 99.9% SLA