> ## Documentation Index
> Fetch the complete documentation index at: https://docs.packagesss.com/llms.txt
> Use this file to discover all available pages before exploring further.

> Deciding how much you'll charge for access to your Packages instance.

# Pricing

export const GridImage = ({window, src, preview = false, img_width = 200, height = 300}) => {
  var host = preview ? '' : 'https://mintlify.s3-us-west-1.amazonaws.com/packages';
  return <div className="grid-image-bg mt-3 mb-3 flex align-items-center" style={{
    alignItems: 'center',
    justifyContent: 'center',
    position: 'relative',
    height,
    width: '100%'
  }}>

    <img src={`${host}${src}`} className={'m-0'} width={img_width} style={{
    zIndex: 2,
    width: '100%',
    maxWidth: img_width,
    border: '1px solid #ccc',
    borderRadius: 5,
    boxShadow: '5px 5px rgba(0,0,0,0.25);'
  }} />

    <div style={{
    transform: 'translateX(-50%)',
    left: '50%',
    top: 0,
    position: 'absolute',
    height: '100%',
    width: '100%',
    zIndex: 0,
    overflow: 'hidden',
    pointerEvents: 'none'
  }}>
      <img src={`${host}/images/grid-bg-trans.png`} className="m-0" />
    </div>
  </div>;
};

## Pricing Tiers

<GridImage src="/images/pricing-1.png" img_width={200} />

With Pricing Tiers, you can set different prices based on the needs of your customers.

Higher priced tiers offer higher limits and more browser profiles.

## Require Subscription

<GridImage src="/images/pricing-2.png" img_width={200} />

Turning on "Require Subscription" will require your customers to subscribe to a plan before they can use your Packages instance.

Essentially, it eliminates the free tier and requires your customers to pay for access to your Packages instance.
