Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions api-reference/introduction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,13 @@ Please go to [LP Agent Portal](https://portal.lpagent.io/) to get an API key.
## Authentication

All API endpoints are authenticated using the `x-api-key` header.

## Premium endpoints

The following endpoints require a **Premium** or **Enterprise** API key plan. **Free** API key plan cannot access these routes.

| Tag | Method | Endpoint |
| ----- | ------ | --------------------------- |
| Pools | `GET` | `/pools/{poolId}/top-lpers` |

To upgrade, manage your API key and billing in the [LP Agent Portal](https://portal.lpagent.io/).
2 changes: 1 addition & 1 deletion snippets/EnterprisePlan.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export const EnterprisePlan = () => {
>
{[
{ icon: "⚡", text: "20 RPM" },
{ icon: "🔌", text: "Access to full REST API" },
{ icon: "💎", text: "Premium API endpoints" },
].map((feature, index) => (
<div
key={index}
Expand Down
2 changes: 1 addition & 1 deletion snippets/FreePlan.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export const FreePlan = () => {
>
{[
{ icon: "⚡", text: "5 RPM" },
{ icon: "🔌", text: "Access to full REST API" },
{ icon: "🔌", text: "Limited API endpoints" },
].map((feature, index) => (
<div
key={index}
Expand Down
2 changes: 1 addition & 1 deletion snippets/PremiumPlan.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export const PremiumPlan = () => {
>
{[
{ icon: "⚡", text: "10 RPM" },
{ icon: "🔌", text: "Access to full REST API" },
{ icon: "💎", text: "Premium API endpoints" },
].map((feature, index) => (
<div
key={index}
Expand Down