Skip to content

Commit

Permalink
feed frames route OAS (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
rishavmukherji authored Jan 29, 2024
1 parent 87cdb9a commit bfed6dc
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions src/v2/spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1564,6 +1564,38 @@ paths:
$ref: "#/components/schemas/FeedResponse"
"400":
$ref: "#/components/responses/400Response"
/farcaster/feed/frames:
get:
summary: Retrieve feed of casts with Frames, reverse chronological order
externalDocs:
url: https://docs.neynar.com/reference/feed-frames
operationId: feed-frames
tags:
- Feed
parameters:
- $ref: "#/components/parameters/ApiKey"
- name: limit
in: query
description: Number of results to retrieve (default 25, max 100)
schema:
type: integer
default: 25
minimum: 1
maximum: 100
- name: cursor
in: query
description: Pagination cursor.
schema:
type: string
responses:
"200":
description: Successful operation.
content:
application/json:
schema:
$ref: "#/components/schemas/FeedResponse"
"400":
$ref: "#/components/responses/400Response"
/farcaster/feed/user/{fid}/popular:
get:
summary: Retrieve 10 most popular casts for a user
Expand Down

0 comments on commit bfed6dc

Please sign in to comment.