Pinata SDK (Archived)
ATTENTION
This is the old Node.js Pinata SDK that is no longer being maintained. Please check out our new IPFS SDK
Take me to the New SDK
Overview
The Pinata NodeJS SDK provides the quickest / easiest path for interacting with the Pinata API.
Installation
Setup
Pinata offers developer keys for various scenarios. The most common scenario is normal IPFS actions (pinning content, unpinning, listing content, etc). These actions happen through the core Pinata API, and are documented in the Pinata API Reference.
To create an API key, visit the Keys Page and click the “New Key” button in the top right. Once you do that you can select if you want your key to be admin or if you want to scope the privileges of the keys to certain endpoints or limit the number of uses. Make those selections, then give the key a name at the bottom, and click create key.
Once you have created the keys you will be shown your API Key Info. This will contain your Api Key, API Secret, and your JWT. Click “Copy All” and save them somewhere safe!
In the example below we provided with 3 ways to call the pinata SDK.
Quickly test that you can connect to the API with the following call:
Usage
Once you’ve set up your instance, using the Pinata SDK is easy. Simply call your desired function and handle the results of the promise.
hashMetadata
Allows the user to change the name and keyvalues associated with content pinned to Pinata. Changes made via this endpoint only affect the metadata for the hash passed in. Metadata is specific to Pinata and does not modify the actual content stored on IPFS in any way. It is simply a convenient way of keeping track of what content you have stored.
pinata.hashMetadata(ipfsPinHash, metadata)
Params
ipfsPinHash
- A string for a valid IPFS Hash that you have pinned on Pinata.metadata
A JSON object containing the following:name
(optional) - A new name that Pinata will associate with this particular hash.keyvalues
(optional) - A JSON object with the updated keyvalues you want associated with the hash provided (see more below)
Adding or modifying keyvalues
To add or modify existing keyvalues, simply provide them in the following format for the keyvalues object:
Removing keyvalues
To remove a keyvalue pair, simply provide null as the value for an existing key like so:
Response
If the operation is successful, you will receive back an “OK” REST 200 status.
Example Code
pinByHash
Adds a hash to Pinata’s pin queue to be pinned asynchronously.
pinata.pinByHash(hashToPin, options)
Params
hashToPin
- A string for a valid IPFS Hash (Also known as a CID)options
(optional): A JSON object that can contain following keyvalues:pinataMetadata
(optional): A JSON object with optional metadata for the hash being pinnedpinataOptions
hostNodes
(optional): An array of multiaddresses for nodes that are currently hosting the content to be pinned
Response
Example Code
pinFileToIPFS
Send a file to Pinata for direct pinning to IPFS.
pinata.pinFileToIPFS(readableStream, options)
Params
readableStream
- A readableStream of the file to be addedoptions
(optional): A JSON object that can contain the following keyvalues:
Response
Example Code
pinFromFS
Read from a location on your local file system and recursively pin the contents to IPFS (node.js only).
Both individual files, as well as directories can be read from.
pinata.pinFromFS(sourcePath, options)
Params
sourcePath
- The location on your local filesystem that should be read from.options
(optional): A JSON object that can contain the following keyvalues:
Response
Example Code
pinJobs
This endpoint allows users to search for the status of all hashes that are currently in Pinata’s pin queue. Records in the pin queue arrive there through the pinByHash operation.
pinata.pinJobs(filters)
Params
-
filters
(optional): An object that can consist of the following optional query parameters:-
sort
(optional): How you wish for the records in the response to be sorted. Valid inputs for this are:'ASC'
'DESC'
-
status
(optional): What the current status of the record is in the pin queue. Valid statuses and their meanings are:prechecking
- Pinata is running preliminary validations on your pin request.searching
- Pinata is actively searching for your content on the IPFS network. This may take some time if your content is isolated.retrieving
- Pinata has located your content and is now in the process of retrieving it.expired
- Pinata wasn’t able to find your content after a day of searching the IPFS network. Please make sure your content is hosted on the IPFS network before trying to pin again.over_free_limit
- Pinning this object would put you over the free tier limit. Please add a credit card to continue pinning content.over_max_size
- This object is too large of an item to pin. If you’re seeing this, please contact us for a more custom solution.invalid_object
- The object you’re attempting to pin isn’t readable by IPFS nodes. Please contact us if you receive this, as we’d like to better understand what you’re attempting to pin.bad_host_node
- The provided host node(s) were either invalid or unreachable. Please make sure all provided host nodes are online and reachable.
-
ipfs_pin_hash
(optional): A string for a valid IPFS hash (also known as a CID) to search for -
limit
(optional): Limit the amount of results returned per page of results (default is 5, and max is also 1000) -
offset
(optional): Provide the record offset for records being returned. This is how you retrieve records on additional pages (default is 0)
-
Response
Example Code
pinJSONToIPFS
Send JSON to Pinata for direct pinning to IPFS.
pinata.pinJSONToIPFS(body, options)
Params
body
- Valid JSON you wish to pin to IPFSoptions
(optional): A JSON object that can contain the following keyvalues:
Response
Example Code
unpin
Have Pinata unpin content that you’ve pinned through the service.
pinata.unpin(hashToUnpin)
Params
hashToUnpin
- the hash of the content you wish to unpin from Pinata
Response
If the operation is successful, you will simply receive “OK” as your result
Example Code
testAuthentication
Tests that you can authenticate with Pinata correctly
pinata.testAuthentication()
Params
None
Response
Example Code
pinList
Retrieve pin records for your Pinata account. In order to get the next page you have to manipulate pageLimit
and pageOffset
filter to get the next page. This method no longer return the total count of pins. We highly encourage you to use the auto-pagination method getFilesByCount.
pinata.pinList(filters)
Params
filters
(optional): An object that can consist of the following optional query parameters:hashContains
(optional): A string of alphanumeric characters that desires hashes must containpinStart
(optional): The earliest date the content is allowed to have been pinned. Must be a valid ISO_8601 date.pinEnd
(optional): The earliest date the content is allowed to have been pinned. Must be a valid ISO_8601 date.unpinStart
(optional): The earlist date the content is allowed to have been unpinned. Must be a valid ISO_8601 date.unpinEnd
(optional): The latest date the content is allowed to have been unpinned. Must be a valid ISO_8601 date.pinSizeMin
(optional): The minimum byte size that pin record you’re looking for can havepinSizeMax
(optional): The maximum byte size that pin record you’re looking for can havestatus
(optional): Filter pins using one of the following options'all'
(Records for both pinned and unpinned content will be returned)'pinned'
(Only records for pinned content will be returned)'unpinned'
(Only records for unpinned content will be returned)
pageLimit
(optional): Limit the amount of results returned per page of results (default is 10, and max is 1000)pageOffset
(optional): Provide the record offset for records being returned. This is how you retrieve records on additional pages (default is 0)metadata
(optional): A JSON object that can be used to find records for content that had optional metadata included when it was added to Pinata. The metadata object is formatted as follows:
Metadata filter object formatting
Filter explanations:
name
(optional): If provided, any records returned must have a name that contains the string provided for the ‘name’.keyvalues
(optional): Each keyvalue provided in this object have both avalue
andop
value
(required): This is the value which will be filtered onop
(required): This is the filter operation that will be applied to thevalue
that was provided. Valid op values are:'gt'
(greater than the value provided)'gte'
(greater than or equal to the value provided)'lt'
(less than the value provided)'lte'
(less than or equal to the value provided)'ne'
(not equal to the value provided)'eq'
(equal to the value provided)'between'
(between the two values provided) - NOTE - This also requires asecondValue
be provided as seen in the example below'notBetween'
(not between the two values provided) - NOTE - This also requires asecondValue
be provided as seen in the example below'like'
(like the value provided)'notLike'
(not like the value provided)'iLike'
(case insensitive version oflike
)'notILike'
(case insensitive version ofnotLike
)'regexp'
(filter the value provided based on a provided regular expression)'iRegexp'
(case insensitive version of regexp)
As an example, the following filter would only find records whose name contains the letters ‘invoice’, have the metadata key ‘company’ with a value of ‘exampleCompany’, and have a metadata key ‘total’ with values between 500 and 1000:
Our libraries support auto-pagination. This feature easily handles fetching large lists of resources without having to manually paginate results and perform subsequent requests.
To use the auto-pagination feature in Node 10+, simply iterate over a “list” call with the parameters you need in a for await loop.
getFilesByCount
This method support auto-pagination. This feature easily handles fetching large lists of pin records for your Pinata account without having to manually paginate results and perform subsequent requests. To use the auto-pagination feature in Node 10+.
pinata.getFilesByCount(filters, count)
Params
filters
(optional): An object that can consist of the following optional query parameters:hashContains
(optional): A string of alphanumeric characters that desires hashes must containpinStart
(optional): The earliest date the content is allowed to have been pinned. Must be a valid ISO_8601 date.pinEnd
(optional): The earliest date the content is allowed to have been pinned. Must be a valid ISO_8601 date.unpinStart
(optional): The earlist date the content is allowed to have been unpinned. Must be a valid ISO_8601 date.unpinEnd
(optional): The latest date the content is allowed to have been unpinned. Must be a valid ISO_8601 date.pinSizeMin
(optional): The minimum byte size that pin record you’re looking for can havepinSizeMax
(optional): The maximum byte size that pin record you’re looking for can havestatus
(optional): Filter pins using one of the following options'all'
(Records for both pinned and unpinned content will be returned)'pinned'
(Only records for pinned content will be returned)'unpinned'
(Only records for unpinned content will be returned)
metadata
(optional): A JSON object that can be used to find records for content that had optional metadata included when it was added to Pinata. The metadata object is formatted as follows:
count
(optional): A Number that specifies how many pins you want. if no number is provided then it will pull all the pins based on your filter
Metadata filter object formatting
Filter explanations:
name
(optional): If provided, any records returned must have a name that contains the string provided for the ‘name’.keyvalues
(optional): Each keyvalue provided in this object have both avalue
andop
value
(required): This is the value which will be filtered onop
(required): This is the filter operation that will be applied to thevalue
that was provided. Valid op values are:'gt'
(greater than the value provided)'gte'
(greater than or equal to the value provided)'lt'
(less than the value provided)'lte'
(less than or equal to the value provided)'ne'
(not equal to the value provided)'eq'
(equal to the value provided)'between'
(between the two values provided) - NOTE - This also requires asecondValue
be provided as seen in the example below'notBetween'
(not between the two values provided) - NOTE - This also requires asecondValue
be provided as seen in the example below'like'
(like the value provided)'notLike'
(not like the value provided)'iLike'
(case insensitive version oflike
)'notILike'
(case insensitive version ofnotLike
)'regexp'
(filter the value provided based on a provided regular expression)'iRegexp'
(case insensitive version of regexp)
Response
userPinnedDataTotal
Returns the total combined size (in bytes) of all content you currently have pinned on Pinata.
pinata.userPinnedDataTotal()
Params
None
Response
The response for this call will the total combined size of everything you currently have pinned on pinata. This value will be expressed in bytes
Example Code
Host Node Multiaddresses
For endpoints that involve Pinata finding and pinning content that already resides on the IPFS network, you can help Pinata find your content faster by optionally providing us with the “multiaddresses” up to five host nodes that your content already resides on.
To find the multiaddresses of your nodes, simply run the following on your node’s command line:
In the response, you’ll want to focus on the “Addresses” array that’s returned. Here you’ll find the multiaddresses of your node. These multiaddresses are what other IPFS nodes use to connect to your node.
In the “Addresses” array, take note of the multiaddress that contains your external IP address. Not the local ipv4 “127.0.0.1” address or the local ipv6 “::1” address.
Here’s an example of what a full external ipv4 multiaddress would look like (your IP address and node ID will differ):
/ip4/123.456.78.90/tcp/4001/ipfs/QmAbCdEfGhIjKlMnOpQrStUvWxYzAbCdEfGhIjKlMnOpQr
⚠️ Please make sure every node provided is online. Pinata will attempt to connect to all nodes before pinning the content, and if any these nodes are offline, your request will eventually fail.
Pin Policies (deprecated)
A pin policy tells Pinata how many times content should be replicated, and where that content should be replicated at.
Pin policies take the following form:
Example pin policy object
The ids of currently available public regions are:
• FRA1 - Frankfurt, Germany (max 2 replications)
• NYC1 - New York City, USA (max 2 replications)
Questions? Issues? Suggestions?
Feel free to file a Github issue or email us at [email protected]
We’d love to hear from you!