Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
org:groups:write
import { PinataSDK } from "pinata"; const pinata = new PinataSDK({ pinataJwt: process.env.PINATA_JWT!, pinataGateway: "example-gateway.mypinata.cloud", }); const group = await pinata.groups.public.create({ name: "My New Group", });
type GroupResponseItem = { id: string; name: string; created_at: string; };
string
const group = await pinata.groups.public.create({ name: "My New Group", });