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

# Shared Links

export const Link = ({href, children, className, ...props}) => {
  const localizedHref = href;
  return <a href={localizedHref} className={className} {...props}>
      {children}
    </a>;
};

Shared links are URLs that are generated for files, folders, web links stored
in Box, which provide direct, read-only access to the resource.

Shared links which are set to an open access level allow anyone with the URL to
access the item, while shared links with company or collaborators access levels
may only be accessed by appropriate authenticated Box users. See
[here][community_create_shared_link] for all of the options and admin settings
related to shared links.

Users can access shared items by entering the shared link URL in a browser.
Applications can also access shared items using the
<Link href="/reference/get-shared-items">Shared Item API</Link>.

[community_create_shared_link]: https://community.box.com/t5/Using-Shared-Links/Creating-Shared-Links/ta-p/19523
