docs/versioned_docs/version-v112/usage/basics.md
This page describes some of the essential properties and features of RestSharp.
Essentially, RestSharp is a wrapper around HttpClient that allows you to do the following:
The best way to call an external HTTP API is to create a typed client, which encapsulates RestSharp calls and doesn't expose the RestClient instance in public.
You can find an example of a Twitter API client on the Example page.