Skip to content

Commit

Permalink
feed-channel-subroute (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
rishavmukherji authored Dec 29, 2023
1 parent 8d38c2a commit 733d989
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions src/v2/spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1305,6 +1305,61 @@ paths:
schema:
type: boolean
default: true
- name: with_replies
in: query
description: Include replies in the response, false by default
schema:
type: boolean
default: false
- 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/channels:
get:
summary: Retrieve feed based on channel ids
externalDocs:
url: https://docs.neynar.com/reference/feed-channels
operationId: feed-channels
tags:
- Feed
parameters:
- $ref: "#/components/parameters/ApiKey"
- name: channel_ids
in: query
schema:
type: string
description: comma separated list of channel ids e.g. neynar,farcaster
- name: with_recasts
in: query
description: Include recasts in the response, true by default
schema:
type: boolean
default: true
- name: with_replies
in: query
description: Include replies in the response, false by default
schema:
type: boolean
default: false
- name: limit
in: query
description: Number of results to retrieve (default 25, max 100)
Expand Down

0 comments on commit 733d989

Please sign in to comment.