Skip to main content

Documentation Index

Fetch the complete documentation index at: https://pinata-car-creator.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

  • Type: string
Requires a name for the group to be created
const group = await pinata.groups.private.create({
	name: "My New Group",
});