Skip to content

Commit 6f83f1f

Browse files
committed
feat(dev-hub) Price Feeds Landing page
1 parent a6ae33c commit 6f83f1f

File tree

1 file changed

+117
-0
lines changed
  • apps/developer-hub/content/docs/price-feeds

1 file changed

+117
-0
lines changed
Lines changed: 117 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
1+
---
2+
title: Price Feeds
3+
description: Overview of Pyth Core and Pyth Pro price feeds
4+
slug: /price-feeds
5+
---
6+
7+
import Link from "next/link";
8+
import { ProductCard } from "../../../src/components/ProductCard";
9+
import {
10+
Lightning,
11+
ChartLine,
12+
Tag,
13+
BookOpen,
14+
SquaresFour,
15+
} from "@phosphor-icons/react/dist/ssr";
16+
17+
Pyth Price Feeds deliver real-time financial market data sources from 120+ first-party providers. These providers include leading exchanges, banks, trading firms, and market makers. Additionally, Pyth Price data can be verified on 100+ blockchains.
18+
19+
## Product Options
20+
21+
Pyth offers two main versions of price feeds, each optimized for different use cases:
22+
23+
<div className="grid grid-cols-1 gap-6 lg:grid-cols-2">
24+
<ProductCard
25+
title="Pyth Pro"
26+
description="Subscription-based price data for institutions and advanced use cases. Previously known as Lazer."
27+
features={[
28+
{ label: "Ultra-low latency" },
29+
{ label: "Crypto, equities, and indexes" },
30+
{ label: "Customizable channels and latency" },
31+
{ label: "Dedicated support" },
32+
]}
33+
quickLinks={[
34+
{ label: "Overview", href: "/price-feeds/pro" },
35+
{ label: "Get access token", href: "/price-feeds/pro/access-token" },
36+
{ label: "Pricing", href: "/price-feeds/pro/pricing" },
37+
]}
38+
buttonLabel="Explore Pro Documentation"
39+
buttonHref="/price-feeds/pro"
40+
/>
41+
<ProductCard
42+
title="Pyth Core"
43+
description="Decentralized price feeds for DeFi and TradFi builders with deterministic on-chain delivery."
44+
features={[
45+
{ label: "400ms update frequency" },
46+
{ label: "100+ supported blockchains" },
47+
{ label: "Supports push and pull updates" },
48+
{ label: "Decentralized Oracle" },
49+
]}
50+
quickLinks={[
51+
{ label: "Overview", href: "/price-feeds/core" },
52+
{ label: "Get started", href: "/price-feeds/core/getting-started" },
53+
{
54+
label: "Contract addresses",
55+
href: "/price-feeds/core/contract-addresses",
56+
},
57+
]}
58+
buttonLabel="Explore Core Documentation"
59+
buttonHref="/price-feeds/core"
60+
/>
61+
</div>
62+
63+
## Additional Resources
64+
65+
<Cards>
66+
<Card icon={<Tag size={18} />} title="Price Feed IDs">
67+
<p className="text-sm text-muted-foreground">
68+
Complete price feed coverage for both Pyth Core and Pyth Pro.
69+
</p>
70+
<div className="mt-4 flex flex-wrap gap-3 text-sm">
71+
<Link
72+
className="text-brand-300 hover:underline"
73+
href="/price-feeds/core/price-feeds"
74+
>
75+
Pyth Core IDs ->
76+
</Link>
77+
<Link
78+
className="text-brand-300 hover:underline"
79+
href="/price-feeds/pro/price-feeds"
80+
>
81+
Pyth Pro IDs ->
82+
</Link>
83+
</div>
84+
</Card>
85+
<Card icon={<BookOpen size={18} />} title="API Reference">
86+
<p className="text-sm text-muted-foreground">
87+
Explore REST and WebSocket APIs for Core and Pro integrations.
88+
</p>
89+
<div className="mt-4 flex flex-wrap gap-3 text-sm">
90+
<Link
91+
className="text-brand-300 hover:underline"
92+
href="/price-feeds/core/api-reference"
93+
>
94+
Core APIs ->
95+
</Link>
96+
<Link
97+
className="text-brand-300 hover:underline"
98+
href="/price-feeds/pro/api-reference"
99+
>
100+
Pro APIs ->
101+
</Link>
102+
</div>
103+
</Card>
104+
<Card icon={<SquaresFour size={18} />} title="Examples">
105+
<p className="text-sm text-muted-foreground">
106+
Review sample applications and integration workflows using Pyth data.
107+
</p>
108+
<div className="mt-4 text-sm">
109+
<Link
110+
className="text-brand-300 hover:underline"
111+
href="https://github.com/pyth-network/pyth-examples"
112+
>
113+
View examples ->
114+
</Link>
115+
</div>
116+
</Card>
117+
</Cards>

0 commit comments

Comments
 (0)