YouVersion PlatformYouVersion Platform
PlatformBiblesDev Docs
CommunityPartnersSupport

YouVersion Platform

Build applications and integrate with the world's most popular Bible platform.

Platform Products

  • Platform Portal
  • Developer Documentation
  • App Management

Resources

  • Support
  • Press inquiries

Legal

  • Privacy Policy
  • Terms of Use

© 2025 YouVersion. All rights reserved.

  • Overview
  • API Reference
  • SDKs
  • Changelog
<  Back to Platform
SDK IntroductionSwift SDKKotlin SDK
JavaScript SDK
    Quick StartCoreTypeScript Types
    Guides
      Copyright & Attribution
React SDK
React Native SDK
Guides

Copyright & Attribution

When displaying Bible text, always display a Bible Version's copyright attribution in accordance with the license agreement

Code
const passage = await bibleClient.getPassage(3034, "JHN.3.16", "html"); const version = await bibleClient.getVersion(3034); // Display both content and copyright console.log(passage.content); console.log(version.copyright); // Required attribution

See types for BiblePassage and BibleVersion

Last modified on April 2, 2026
TypeScript TypesQuick Start
TypeScript