-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathseo.config.ts
90 lines (87 loc) · 4.54 KB
/
seo.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
interface SEOConfig {
title: string;
description: string;
}
interface PageSEOConfig {
[key: string]: SEOConfig;
}
const seoConfig: PageSEOConfig = {
index: {
title: "WhiteBIT API Documentation | Cryptocurrency Exchange API",
description: "Powerful cryptocurrency exchange API with comprehensive documentation. Access real-time market data, automated trading, secure authentication, and WebSocket feeds for seamless integration.",
},
overview: {
title: "API Overview | WhiteBIT Documentation",
description: "Overview of WhiteBIT's API capabilities, features, and integration options. Learn about our REST APIs, WebSocket feeds, and authentication methods.",
},
colocation: {
title: "Colocation Services | Ultra-Low Latency Trading | WhiteBIT",
description: "Professional-grade colocation services for high-frequency trading (HFT). Execute trades in 5ms with direct connection to WhiteBIT's matching engine. AWS integration guide and 24/7 support.",
},
// Private API endpoints
"private/http-main-v4": {
title: "Main Balance Operations | Private HTTP API V4 | WhiteBIT",
description: "Comprehensive guide for WhiteBIT's private HTTP API V4 endpoints. Learn how to manage deposits, withdrawals, and balance transfers securely.",
},
"private/http-trade-v4": {
title: "Trading API V4 | Private Endpoints | WhiteBIT",
description: "Advanced trading endpoints documentation for WhiteBIT exchange. Place orders, manage positions, and access trading history.",
},
"private/http-trade-v1": {
title: "Trading API V1 | Legacy Private Endpoints | WhiteBIT",
description: "Legacy V1 trading API documentation for WhiteBIT exchange. Reference for maintaining existing integrations using the V1 endpoints.",
},
"private/http-auth": {
title: "Authentication Guide | Private API | WhiteBIT",
description: "Learn how to authenticate your requests to WhiteBIT's private API endpoints. Step-by-step guide for implementing secure API authentication.",
},
"private/websocket": {
title: "Private WebSocket API | Real-time Updates | WhiteBIT",
description: "Secure WebSocket endpoints for real-time account updates, order status changes, and balance modifications.",
},
// Public API endpoints
"public/http-v4": {
title: "Public HTTP API V4 | Market Data | WhiteBIT",
description: "Access public market data, ticker information, and trading pairs through WhiteBIT's V4 HTTP API endpoints. No authentication required.",
},
"public/http-v2": {
title: "Public HTTP API V2 | Legacy Endpoints | WhiteBIT",
description: "Legacy V2 public API documentation. Reference for existing integrations using WhiteBIT's V2 public endpoints.",
},
"public/http-v1": {
title: "Public HTTP API V1 | Legacy Endpoints | WhiteBIT",
description: "Legacy V1 public API documentation. Historical reference for WhiteBIT's first public API version endpoints.",
},
"public/websocket": {
title: "Public WebSocket API | Market Data Stream | WhiteBIT",
description: "Real-time market data access through WhiteBIT's WebSocket API. Stream live prices, order book updates, and trading activity.",
},
// Webhook documentation
"webhook/web-hook": {
title: "Webhooks Integration | Real-time Notifications | WhiteBIT",
description: "Implement real-time notifications for account and trading events using WhiteBIT's webhook system. Complete setup and integration guide.",
},
// OAuth documentation
"oauth/overview": {
title: "OAuth 2.0 Overview | Authentication | WhiteBIT",
description: "Introduction to WhiteBIT's OAuth 2.0 implementation. Learn about secure third-party authentication and authorization flows.",
},
"oauth/usage": {
title: "OAuth 2.0 Guide | Implementation | WhiteBIT",
description: "Step-by-step guide for implementing OAuth 2.0 authentication with WhiteBIT. Includes code examples and best practices.",
},
// General pages
faq: {
title: "FAQ | API Documentation | WhiteBIT",
description: "Common questions and answers about WhiteBIT's API integration, rate limits, authentication, and best practices.",
},
glossary: {
title: "API Glossary | Terms & Definitions | WhiteBIT",
description: "Comprehensive glossary of trading terms, API concepts, and cryptocurrency terminology used in WhiteBIT's documentation.",
},
sdks: {
title: "SDKs & Libraries | Developer Tools | WhiteBIT",
description: "Official and community SDKs, libraries, and code examples for integrating with WhiteBIT's API in various programming languages.",
},
};
export default seoConfig;