Listing Files
Learn how to list files inside your Pinata account
To list the files on your account you can either use the SDK or the Pinata API to fetch file data programatically.
Filters
name
- Type:
string
Name of the file
cid
- Type:
string
CID of the file
group
- Type:
string
Filter by groupId
keyValue
- Type:
object
Filter files by keyValue
objects used in Pinata Metadata
This also includes an optional operator
for even more fine tuned data
Type:
pageLimit
- Type:
number
Determine the number of results, default is 10
, max is 1000
pageOffset
- Type:
number
Offset the number of files returned to paginate
pinStart
- Type:
string
Filter by start date in ISO8601 format
pinEnd
- Type:
string
Filter by end date in ISO8601 format
pinSizeMin
- Type:
number
Filter by minimum file size in bytes
pinSizeMax
- Type:
number
Filter by maximum file size in bytes
Auto Paginate
The listFiles
method has an auto pagination feature that is triggered when used inside a for await
iterator
Works like magic ✨
Advance Querying with the API
You also have the option to query your content on the associated metadata that may have been included with the content when it was uploaded.
These queries look very similar to the default parameters but are slightly more complex. Here are few simple examples, with added explanation afterward:
To query on the name you provided for your pin, your query would take this form:
(This will match on names that contain the string of characters provided as a value. For added specificity, please include the full name you’re trying to find).
To query on the metadata key-value attributes:
OR
To query on both the metadata name and multiple key-value attributes:
Explaining the “value” and “op” key / values
As seen above, each query on custom values takes the form of an object with a “value” key and an “op” key.
The “value” is fairly straightforward. This is simply the value that you wish your query operation to be applied to. These values can be:
Strings
Numbers (integers or decimals)
Dates (Provided in ISO_8601 format)
The op
is what query operation will be applied to the value you provided. The following opcodes are available to query with:
gt
- (greater than)
gte
- (greater than or equal)
lt
- (less than)
lte
- (less than or equal)
ne
- (not equal to)
eq
- (equal to)
between
- (When querying with the ‘between’ operation, you need to supply a ‘secondValue’ to be consumed by the query operation)
For Example:
notBetween
- (When querying with the notBetween
operation, you need to supply a secondValue
to be consumed by the query operation)
For Example:
like
- (you can use this to find values that are similar to what you’ve passed in)
For example, this query would find all entries that begin with “testValue”. A % before your value means anything can come before it, and a % sign after means any characters can come after it. So %testValue% would contain all entries containing the characters “testValue”.
notLike
- (you can use this to find values that do not contain the character string you’ve passed in)
iLike
- (The case insensitive version of the “like” opcode)
notILike
- (The case insensitive version of the “notLike” opcode)
regexp
- (Regular expression matching)
iRegexp
- (Case insensitive regular expression matching)