Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: filter channel feeds by fids #270

Merged
Merged
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: 9 additions & 1 deletion src/v2/spec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
openapi: 3.1.0
info:
title: Farcaster API V2
version: "2.6.0"
version: "2.6.1"
description: >
The Farcaster API allows you to interact with the Farcaster protocol.
See the [Neynar docs](https://docs.neynar.com/reference) for more details.
Expand All @@ -15,7 +15,7 @@
security:
- ApiKeyAuth: []

components:

Check warning on line 18 in src/v2/spec.yaml

View workflow job for this annotation

GitHub Actions / Validate and Lint OpenAPI Specs

unused-components All components must be referenced.
securitySchemes:
ApiKeyAuth:
type: apiKey
Expand Down Expand Up @@ -5826,6 +5826,14 @@
schema:
type: boolean
default: true
- name: fids
in: query
description: Comma separated list of FIDs to filter the feed by, up to 10 at a time
required: false
schema:
type: string
x-comma-separated: true
x-accept-as: integer
- name: limit
in: query
description: Number of results to fetch
Expand Down
Loading