Protokols
  1. Leaderboards
Protokols
  • Protokols API
  • Authentication
  • Rate Limits
  • Track Profiles
    • Track KOL Profile
      GET
    • Track Project Profile
      GET
  • Twitter Profiles
    • Get Profile
      GET
    • Get Profile By IDs
      GET
    • Get Profile by Contract Address
      GET
    • Get Profile Statistics
      GET
    • Get Profile Smart Engagement Posts
      GET
    • Get Profile Notable Followers
      GET
    • Get Profile Username History
      GET
    • Get Profile Followers Paginated
      GET
    • Get Profile Following Paginated
      GET
    • Search Profiles
      GET
  • Posts
    • Get Posts By ID
      GET
    • Search Posts
      GET
    • Get Post Retweets
      GET
    • Get Posts Replies
      GET
  • KOLs
    • Get KOL Calls Overview
    • Get KOL Coin Narratives Distribution
    • Get KOL Calls Market Cap Distribution
    • Get KOL Token Mentions
    • Get KOL Project Interactions
  • Projects
    • Get Project Top Influencers
    • Get Project Organic Posts Chart
    • Get Project Organic Views Chart
    • Get Project Mentioned Contract Addresses
    • Get Project AI Summary
  • Profile Charts
    • Get Profile Follower Chart
    • Get Profile Notable Follower Chart
    • Get Profile Smart Engagement Chart
    • Get Profile Views Chart
  • Narratives
    • List Narratives
    • Get Narrative Details
    • List Projects in Narrative
    • Get Narrative Market Cap Chart
    • Get Narrative Mindshare Chart
  • Trending
    • Get Trending Projects By Views
    • Get Trending Projects By Smart Followers
    • Get Trending Projects By Smart Engagement
    • Get Trending KOLs By Views
    • Get Trending KOLs By Smart Followers
    • Get Trending KOLs By Smart Engagement
  • Leaderboards
    • List Leaderboards
      GET
    • Create Leaderboard
      POST
    • Get Leaderboard Details
      GET
    • Get Leaderboard Interactions
      GET
    • Update Leaderboard
      PATCH
    • Delete Leaderboard
      DELETE
    • Get Leaderboard Profiles
      GET
    • Modify Leaderboard Profiles
      POST
  1. Leaderboards

Update Leaderboard

Developing
PATCH
/leaderboards/{id}
Update an existing leaderboard's configuration including mention profiles and keywords
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PATCH 'https://public-api.protokols.io/api/v1/leaderboards/' \
--header 'authorization: Bearer 99f0c8fbb6df52400c8edac910f9dbb3be93faea06ba928bba24011252409c4a' \
--header 'Content-Type: application/json' \
--data-raw '{
    "name": "string",
    "ticker": "string",
    "contractAddress": "string",
    "mentionProfiles": [
        "string"
    ],
    "keywords": [
        "string"
    ]
}'
Response Response Example
{
    "data": {
        "id": "string",
        "name": "string",
        "ticker": "string",
        "contract_address": "string",
        "mention_profiles": [
            "string"
        ],
        "keywords": [
            "string"
        ]
    }
}

Request

Path Params

Header Params

Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

Modified at 2025-08-06 18:36:40
Previous
Get Leaderboard Interactions
Next
Delete Leaderboard
Built with