POST
/
pinning
/
pinFileToIPFS
curl --request POST \
  --url https://api.pinata.cloud/pinning/pinFileToIPFS \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form file=readstream \
  --form 'pinataMetadata={
  "name": "Pinnie.json"
}' \
  --form 'pinataOptions={
  "cidVersion": 1
}'
{
  "IpfsHash": "<string>",
  "PinSize": 123,
  "Timestamp": "<string>",
  "isDuplicate": true
}
Uploading files via the API playground is not supported at this time but will be soon!

Authorizations

Authorization
string
headerrequired

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

multipart/form-data
file
string
required
pinataMetadata
object

Optional stringified object

pinataOptions
object

Optional stringified object

Response

200 - application/json
IpfsHash
string
PinSize
integer
Timestamp
string
isDuplicate
boolean