API Wrapper
Noun · Development
Definitions
A library or module that wraps low-level API calls behind a more convenient interface, often handling auth, retries, pagination, and error translation for the caller. API wrappers reduce repetitive client code but can also hide important details if designed too opaquely.
In plain English: A helper library that makes an API easier to call from code.
Example: "The team published an internal API wrapper so every service did not need to reimplement signing, backoff, and version headers separately."