LogoLogo
  • OpenRank
    • Ranking and Reputation
    • Use Cases
  • The Reputation Stack
    • Data
    • OpenRank Protocol
    • Apps and Clients
  • Integrations
    • Farcaster
      • Openrank Scores Onchain
      • Ranking Strategies on Farcaster
      • Global Profile Ranking
        • 🔵Top Profiles (based on Following)
        • 🔵Top Profiles (based on Engagement)
        • 🟢Profile Rank (based on Following)
        • 🟢Profile Rank (based on Engagement)
      • Channel User Rankings
        • 🔵Top Profiles in Channel
        • 🟢Profile Rank in Channel
      • Personalized Network
        • Direct Network
          • 🟢Get Direct Following
          • 🟢Get Direct Engagement
        • Extended Network
          • 🟢Personalized Following
          • 🟢Personalized Engagement
      • Frames
        • 🔵Top Frames
        • 🟢Personalized Recommended Frames
      • Feeds
        • For You Feed
          • 🔵For You
          • 🔵For You (by Authorship)
        • Channel Feed
          • 🔵Channel Trending Casts
      • Metadata
        • 🟢Get FIDs for Addresses
        • 🟢Get Handles For Addresses
        • 🟢Get Addresses for FIDs
        • 🟢Get Addresses for Handles
      • Ideas to Build using OpenRank APIs
      • Neynar x OpenRank Guides (WIP)
        • Build "For You" Feeds for your Client, using Neynar and OpenRank
        • Build "User Search" using Neynar and OpenRanks' Global Ranking API
        • Build "Suggested follow list" based on OpenRank and Neynar
        • Build Channel Trending Feeds for your Client using Neynar and OpenRank APIs
        • Build "Discover New Users Feed" using Neynar and OpenRanks Global Ranking API
        • Build Power Badges for your Client using Global & Personalized Ranking APIs by OpenRank
        • Build "Sort Replies" on a cast using Neynar and OpenRanks' Global Ranking API
    • Clanker OpenRank Scores
    • Lens Protocol
      • Ranking Strategies on Lens
      • Lens Profile APIs
      • Lens Content APIs
      • Lens Profile Insights
    • Metamask SPD
    • Onchain Graphs and Feeds
    • Upcoming Integrations
    • GitHub Developers & Repo Ranking
  • Reputation Algorithms
    • EigenTrust
    • Hubs and Authorities
    • Latent Semantic Analysis
  • OpenRank SDK
    • Introduction
    • Creating your first reputation graph
    • Publishing Rankings with OpenRank SDK
    • Guides
      • Tipping based User Rankings powered by OpenRank
    • Installation
    • SDK References
      • EigenTrust
        • Installation and Use
        • Examples for using EigenTrust
      • Hubs & Authorities
        • Installation and Use
        • Examples for using Hubs & Authorities (Coming soon)
      • Latent Semantic Analysis (Coming soon)
Powered by GitBook
LogoLogo

SOCIALS

  • Github
  • Farcaster

Copyright 2024

On this page
  1. Integrations
  2. Farcaster
  3. Feeds
  4. For You Feed

For You (by Authorship)

Get a list of casts that have been casted by the popular profiles in a user's extended network.

PreviousFor YouNextChannel Feed

Last updated 1 year ago

https://graph.cast.k3l.io/casts/personalized/recent/{fid}

This one as opposed to the previous one is used to find what your network is saying. The is more for not just showing you casts for what your network is saying but also to show casts of what your network is interested/engaging in.

🔵
previous end point

Personalized Casts for FID based on authorship

get

Get a list of casts that have been casted by the popular profiles in a user's extended network.

Path parameters
fidintegerRequired

FID to fetch personalized casts for

Example: {"value":2025}
Query parameters
kintegerOptional

Degrees of separation in the social graph

Default: 2Example: {"value":2}
offsetintegerOptional

Offset in the list of results

Default: 0Example: {"value":0}
limitintegerOptional

Maximum number of results to return

Default: 50Example: {"value":50}
Responses
200
Successful response
application/json
422
Validation Error
application/json
get
GET /casts/personalized/recent/{fid} HTTP/1.1
Host: graph.cast.k3l.io
Accept: */*
{
  "result": [
    {
      "hash": "text",
      "url": "text",
      "text": "text",
      "embeds": "text",
      "mentions": "text",
      "fid": 1,
      "score": 1
    }
  ]
}