Interface FilebaseResponse

Response object returned by Filebase API after a successful upload

interface FilebaseResponse {
    cid: string;
    metadata?: Record<string, any>;
    name: string;
    size: number;
}

Properties

Properties

cid: string

IPFS content identifier (CID) of the uploaded file

metadata?: Record<string, any>

Additional metadata about the upload

name: string

Name of the uploaded file

size: number

Size of the uploaded content in bytes