Comment on page
Pinning API
For a full list and documentation of all the available pinning service endpoints, visit the IPFS Pinning Service API endpoint documentation.
To request access to the pinning service for your Dolpin account, navigate to Developer Tools on Side Navigation Bar & Select ‘API Tokens’. The API Tokens interface will allow you to ‘Create New Token’, name it, and acquire your API Token.

Once created, an API Key Folder will be generated. All files uploaded via API will be stored here.
You can upload files via POST request, and pin them to IPFS via Dolpin API on IPFS interface.
https://gateway.dolpin.io/api/v1/documents/upload-in-cluster-with-api?api_token=<YOUR_API_TOKEN>
form-data :
files : [file]
name: “file name”
You can delete files via DELETE request, and remove them with their GUID.
https://gateway.dolpin.io/api/v1/documents/delete-with-api?api_token=<YOUR_API_TOKEN>
body :
{
"document_guid": ["<guid>", "<guid>"]
}
Note: Guid can be accessed from the details sections of each files.
Last modified 5mo ago