Documentation Index
Fetch the complete documentation index at: https://pinata-fix--redirect--docs-to--quickstart.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Create a private group
Usage
import { PinataSDK } from "pinata";
const pinata = new PinataSDK({
pinataJwt: process.env.PINATA_JWT!,
pinataGateway: "example-gateway.mypinata.cloud",
});
const group = await pinata.groups.private.create({
name: "My New Group",
});
Returns
type GroupResponseItem = {
id: string;
name: string;
created_at: string;
};
Parameters
name
Requires a name for the group to be created
const group = await pinata.groups.private.create({
name: "My New Group",
});