RestSharp basics
This page describes some of the essential properties and features of RestSharp.
What RestSharp does
Essentially, RestSharp is a wrapper around HttpClient
that allows you to do the following:
- Add default parameters of any kind (not just headers) to the client, once
- Add parameters of any kind to each request (query, URL segment, form, attachment, serialized body, header) in a straightforward way
- Serialize the payload to JSON or XML if necessary
- Set the correct content headers (content type, disposition, length, etc.)
- Handle the remote endpoint response
- Deserialize the response from JSON or XML if necessary
API client
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.
Creating the client
A RestSharp client can be instantiated by one of the constructors:
// Creates a client with default options to call a given base URL
var client = new RestClient("https://localhost:5000");
// Creates a client using the options object
var options = new RestClientOptions("https://localhost:5000") {
MaxTimeout = 1000
};
var client = new RestClient(options);
Simple factory
Another way to create the client instance is to use a simple client factory. The factory will use the BaseUrl
property of the client options to cache HttpClient
instances. Every distinct base URL will get its own HttpClient
instance. Other options don't affect the caching. Therefore, if you use different options for the same base URL, you'll get the same HttpClient
instance, which will not be configured with the new options. Options that aren't applied after the first client instance is created are:
Credentials
UseDefaultCredentials
AutomaticDecompression
PreAuthenticate
FollowRedirects
RemoteCertificateValidationCallback
ClientCertificates
MaxRedirects
MaxTimeout
UserAgent
Expect100Continue
Constructor parameters to configure the HttpMessageHandler
and default HttpClient
headers configuration are also ignored for the cached instance as the factory only configures the handler once.
You need to set the useClientFactory
parameter to true
in the RestClient
constructor to enable the factory.
var client = new RestClient("https://api.twitter.com/2", true);
Create a request
Before making a request using RestClient
, you need to create a request instance:
var request = new RestRequest(resource); // resource is the sub-path of the client base path
The default request type is GET
and you can override it by setting the Method
property. You can also set the method using the constructor overload:
var request = new RestRequest(resource, Method.Post);
After you've created a RestRequest
, you can add parameters to it. Below, you can find all the parameter types supported by RestSharp.
Adding headers
Adds the header parameter as an HTTP header that is sent along with the request. The header name is the parameter's name and the header value is the value.
You can use one of the following request methods to add a header parameter:
AddHeader(string name, string value);
AddHeader<T>(string name, T value); // value will be converted to string
AddOrUpdateHeader(string name, string value); // replaces the header if it already exists
For example:
var request = new RestRequest("/path").AddHeader("X-Key", someKey);
You can also add header parameters to the client, and they will be added to every request made by the client. This is useful for adding authentication headers, for example.
client.AddDefaultHeader(string name, string value);
::: warning Content-Type
RestSharp will use the correct content type by default. Avoid adding the Content-Type
header manually to your requests unless you are absolutely sure it is required. You can add a custom content type to the body parameter itself.
:::
Get or Post parameters
The default RestSharp parameter type is GetOrPostParameter
. You can add GetOrPost
parameter to the request using the AddParameter
function:
request
.AddParameter("name1", "value1")
.AddParameter("name2", "value2");
GetOrPost
behaves differently based on the HTTP method. If you execute a GET
call, RestSharp will append the parameters to the URL in the form url?name1=value1&name2=value2
.
On a POST
or PUT
requests, it depends on whether you have files attached to a request.
If not, the parameters will be sent as the body of the request in the form name1=value1&name2=value2
. Also, the request will be sent as application/x-www-form-urlencoded
.
In both cases, name and value will automatically be URL-encoded, unless specified otherwise:
request.AddParameter("name", "Væ üé", false); // don't encode the value
If you have files, RestSharp will send a multipart/form-data
request. Your parameters will be part of this request in the form:
Content-Disposition: form-data; name="parameterName"
ParameterValue
You can also add GetOrPost
parameter as a default parameter to the client. This will add the parameter to every request made by the client.
client.AddDefaultParameter("foo", "bar");
It will work the same way as request parameters, except that it will be added to every request.
Using AddObject
You can avoid calling AddParameter
multiple times if you collect all the parameters in an object, and then use AddObject
.
For example, this code:
var params = new {
status = 1,
priority = "high",
ids = new [] { "123", "456" }
};
request.AddObject(params);
is equivalent to:
request.AddParameter("status", 1);
request.AddParameter("priority", "high");
request.AddParameter("ids", "123,456");
Remember that AddObject
only works if your properties have primitive types. It also works with collections of primitive types as shown above.
If you need to override the property name or format, you can do it using the RequestProperty
attribute. For example:
public class RequestModel {
// override the name and the format
[RequestProperty(Name = "from_date", Format = "d")]
public DateTime FromDate { get; set; }
}
// add it to the request
request.AddObject(new RequestModel { FromDate = DateTime.Now });
In this case, the request will get a GET or POST parameter named from_date
and its value would be the current date in short date format.
Using AddObjectStatic
Request function AddObjectStatic<T>(...)
allows using pre-compiled expressions for getting property values. Compared to AddObject
that uses reflections for each call, AddObjectStatic
caches functions to retrieve properties from an object of type T
, so it works much faster.
You can instruct AddObjectStatic
to use custom parameter names and formats, as well as supply the list of properties than need to be used as parameters. The last option could be useful if the type T
has properties that don't need to be sent with HTTP call.
To use custom parameter name or format, use the RequestProperty
attribute. For example:
class TestObject {
[RequestProperty(Name = "some_data")]
public string SomeData { get; set; }
[RequestProperty(Format = "d")]
public DateTime SomeDate { get; set; }
[RequestProperty(Name = "dates", Format = "d")]
public DateTime[] DatesArray { get; set; }
public int Plain { get; set; }
public DateTime[] PlainArray { get; set; }
}
URL segment parameter
Unlike GetOrPost
, URL segment parameter replaces placeholder values in the request URL:
var request = new RestRequest("health/{entity}/status")
.AddUrlSegment("entity", "s2");
When the request executes, RestSharp will try to match any {placeholder}
with a parameter of that name (without the {}
) and replace it with the value. So the above code results in health/s2/status
being the URL.
You can also add UrlSegment
parameter as a default parameter to the client. This will add the parameter to every request made by the client.
client.AddDefaultUrlSegment("foo", "bar");
Cookies
You can add cookies to a request using the AddCookie
method:
request.AddCookie("foo", "bar");
RestSharp will add cookies from the request as cookie headers and then extract the matching cookies from the response. You can observe and extract response cookies using the RestResponse.Cookies
properties, which has the CookieCollection
type.
However, the usage of a default URL segment parameter is questionable as you can just include the parameter value to the base URL of the client. There is, however, a CookieContainer
instance on the request level. You can either assign the pre-populated container to request.CookieContainer
, or let the container be created by the request when you call AddCookie
. Still, the container is only used to extract all the cookies from it and create cookie headers for the request instead of using the container directly. It's because the cookie container is normally configured on the HttpClientHandler
level and cookies are shared between requests made by the same client. In most of the cases this behaviour can be harmful.
If your use case requires sharing cookies between requests made by the client instance, you can use the client-level CookieContainer
, which you must provide as the options' property. You can add cookies to the container using the container API. No response cookies, however, would be auto-added to the container, but you can do it in code by getting cookies from the Cookes
property of the response and adding them to the client-level container available via IRestClient.Options.CookieContainer
property.
Request Body
RestSharp supports multiple ways to add a request body:
AddJsonBody
for JSON payloadsAddXmlBody
for XML payloadsAddStringBody
for pre-serialized payloads
We recommend using AddJsonBody
or AddXmlBody
methods instead of AddParameter
with type BodyParameter
. Those methods will set the proper request type and do the serialization work for you.
When you make a POST
, PUT
or PATCH
request and added GetOrPost
parameters, RestSharp will send them as a URL-encoded form request body by default. When a request also has files, it will send a multipart/form-data
request. You can also instruct RestSharp to send the body as multipart/form-data
by setting the AlwaysMultipartFormData
property to true
.
You can specify a custom body content type if necessary. The contentType
argument is available in all the overloads that add a request body.
It is not possible to add client-level default body parameters.
String body
If you have a pre-serialized payload like a JSON string, you can use AddStringBody
to add it as a body parameter. You need to specify the content type, so the remote endpoint knows what to do with the request body. For example:
const json = "{ data: { foo: \"bar\" } }";
request.AddStringBody(json, ContentType.Json);
JSON body
When you call AddJsonBody
, it does the following for you:
- Instructs the RestClient to serialize the object parameter as JSON when making a request
- Sets the content type to
application/json
- Sets the internal data type of the request body to
DataType.Json
Here is the example:
var param = new MyClass { IntData = 1, StringData = "test123" };
request.AddJsonBody(param);
It is possible to override the default content type by supplying the contentType
argument. For example:
request.AddJsonBody(param, "text/x-json");
If you use a pre-serialized string with AddJsonBody
, it will be sent as-is. The AddJsonBody
will detect if the parameter is a string and will add it as a string body with JSON content type.
Essentially, it means that top-level strings won't be serialized as JSON when you use AddJsonBody
. To overcome this issue, you can use an overload of AddJsonBody
, which allows you to tell RestSharp to serialize the string as JSON:
const string payload = @"
""requestBody"": {
""content"": {
""application/json"": {
""schema"": {
""type"": ""string""
}
}
}
},";
request.AddJsonBody(payload, forceSerialize: true); // the string will be serialized
request.AddJsonBody(payload); // the string will NOT be serialized and will be sent as-is
XML body
When you call AddXmlBody
, it does the following for you:
- Instructs the RestClient to serialize the object parameter as XML when making a request
- Sets the content type to
application/xml
- Sets the internal data type of the request body to
DataType.Xml
Do not send XML string to AddXmlBody
; it won't work!
Query string
QueryString
works like GetOrPost
, except that it always appends the parameters to the url in the form url?name1=value1&name2=value2
, regardless of the request method.
Example:
var client = new RestClient("https://search.me");
var request = new RestRequest("search")
.AddParameter("foo", "bar");
var response = await client.GetAsync<SearchResponse>(request);
It will send a GET
request to https://search.me/search?foo=bar
.
For POST
-style requests you need to add the query string parameter explicitly:
request.AddQueryParameter("foo", "bar");
In some cases, you might need to prevent RestSharp from encoding the query string parameter.
To do so, set the encode
argument to false
when adding the parameter:
request.AddQueryParameter("foo", "bar/fox", false);
You can also add a query string parameter as a default parameter to the client. This will add the parameter to every request made by the client.
client.AddDefaultQueryParameter("foo", "bar");
The line above will result in all the requests made by that client instance to have foo=bar
in the query string for all the requests made by that client.
Making a call
Once you've added all the parameters to your RestRequest
, you are ready to make a request.
RestClient
has a single function for this:
public async Task<RestResponse> ExecuteAsync(
RestRequest request,
CancellationToken cancellationToken = default
)
You can also avoid setting the request method upfront and use one of the overloads:
Task<RestResponse> ExecuteGetAsync(RestRequest request, CancellationToken cancellationToken)
Task<RestResponse> ExecutePostAsync(RestRequest request, CancellationToken cancellationToken)
Task<RestResponse> ExecutePutAsync(RestRequest request, CancellationToken cancellationToken)
When using any of those methods, you will get the response content as string in response.Content
.
RestSharp can deserialize the response for you. To use that feature, use one of the generic overloads:
Task<RestResponse<T>> ExecuteAsync<T>(RestRequest request, CancellationToken cancellationToken)
Task<RestResponse<T>> ExecuteGetAsync<T>(RestRequest request, CancellationToken cancellationToken)
Task<RestResponse<T>> ExecutePostAsync<T>(RestRequest request, CancellationToken cancellationToken)
Task<RestResponse<T>> ExecutePutAsync<T>(RestRequest request, CancellationToken cancellationToken)
All the overloads with names starting with Execute
don't throw an exception if the server returns an error. Read more about it here.
If you just need a deserialized response, you can use one of the extensions:
Task<T> GetAsync<T>(RestRequest request, CancellationToken cancellationToken)
Task<T> PostAsync<T>(RestRequest request, CancellationToken cancellationToken)
Task<T> PutAsync<T>(RestRequest request, CancellationToken cancellationToken)
Task<T> HeadAsync<T>(RestRequest request, CancellationToken cancellationToken)
Task<T> PatchAsync<T>(RestRequest request, CancellationToken cancellationToken)
Task<T> DeleteAsync<T>(RestRequest request, CancellationToken cancellationToken)
Those extensions will throw an exception if the server returns an error, as there's no other way to float the error back to the caller.
The IRestClient
interface also has extensions for making requests without deserialization, which throw an exception if the server returns an error even if the client is configured to not throw exceptions.
Task<RestResponse> GetAsync(RestRequest request, CancellationToken cancellationToken)
Task<RestResponse> PostAsync(RestRequest request, CancellationToken cancellationToken)
Task<RestResponse> PutAsync(RestRequest request, CancellationToken cancellationToken)
Task<RestResponse> HeadAsync(RestRequest request, CancellationToken cancellationToken)
Task<RestResponse> PatchAsync(RestRequest request, CancellationToken cancellationToken)
Task<RestResponse> DeleteAsync(RestRequest request, CancellationToken cancellationToken)
JSON requests
To make a simple GET
call and get a deserialized JSON response with a pre-formed resource string, use this:
var response = await client.GetJsonAsync<TResponse>("endpoint?foo=bar", cancellationToken);
You can also use a more advanced extension that uses an object to compose the resource string:
var client = new RestClient("https://example.org");
var args = new {
id = "123",
foo = "bar"
};
// Will make a call to https://example.org/endpoint/123?foo=bar
var response = await client.GetJsonAsync<TResponse>("endpoint/{id}", args, cancellationToken);
It will search for the URL segment parameters matching any of the object properties and replace them with values. All the other properties will be used as query parameters.
Similar things are available for POST
requests.
var request = new CreateOrder("123", "foo", 10100);
// Will post the request object as JSON to "orders" and returns a
// JSON response deserialized to OrderCreated
var result = client.PostJsonAsync<CreateOrder, OrderCreated>("orders", request, cancellationToken);
var request = new CreateOrder("123", "foo", 10100);
// Will post the request object as JSON to "orders" and returns a
// status code, not expecting any response body
var statusCode = client.PostJsonAsync("orders", request, cancellationToken);
The same two extensions also exist for PUT
requests (PutJsonAsync
);
JSON streaming APIs
For HTTP API endpoints that stream the response data (like Twitter search stream) you can use RestSharp with StreamJsonAsync<T>
, which returns an IAsyncEnumerable<T>
:
public async IAsyncEnumerable<SearchResponse> SearchStream(
[EnumeratorCancellation] CancellationToken cancellationToken = default
) {
var response = _client.StreamJsonAsync<TwitterSingleObject<SearchResponse>>(
"tweets/search/stream", cancellationToken
);
await foreach (var item in response.WithCancellation(cancellationToken)) {
yield return item.Data;
}
}
The main limitation of this function is that it expects each JSON object to be returned as a single line. It is unable to parse the response by combining multiple lines into a JSON string.
Uploading files
To add a file to the request you can use the RestRequest
function called AddFile
. The main function accepts the FileParameter
argument:
request.AddFile(fileParameter);
You can instantiate the file parameter using FileParameter.Create
that accepts a bytes array, or FileParameter.FromFile
, which will load the file from disk.
There are also extension functions that wrap the creation of FileParameter
inside:
// Adds a file from disk
AddFile(parameterName, filePath, contentType);
// Adds an array of bytes
AddFile(parameterName, bytes, fileName, contentType);
// Adds a stream returned by the getFile function
AddFile(parameterName, getFile, fileName, contentType);
Remember that AddFile
will set all the necessary headers, so please don't try to set content headers manually.
You can also provide file upload options to the AddFile
call. The options are:
DisableFilenameEncoding
(defaultfalse
): if set totrue
, RestSharp will not encode the file name in theContent-Disposition
headerDisableFilenameStar
(defaulttrue
): if set totrue
, RestSharp will not add thefilename*
parameter to theContent-Disposition
header
Example of using the options:
var options = new FileParameterOptions {
DisableFilenameEncoding = true,
DisableFilenameStar = false
};
request.AddFile("file", filePath, options: options);
The options specified in the snippet above usually help when you upload files with non-ASCII characters in their names.
Downloading binary data
There are two functions that allow you to download binary data from the remote API.
First, there's DownloadDataAsync
, which returns Task<byte[]
. It will read the binary response to the end, and return the whole binary content as a byte array. It works well for downloading smaller files.
For larger responses, you can use DownloadStreamAsync
that returns Task<Stream>
. This function allows you to open a stream reader and asynchronously stream large responses to memory or disk.
Reusing HttpClient
RestSharp uses HttpClient
internally to make HTTP requests. It's possible to reuse the same HttpClient
instance for multiple RestClient
instances. This is useful when you want to share the same connection pool between multiple RestClient
instances.
One way of doing it is to use RestClient
constructors that accept an instance of HttpClient
or HttpMessageHandler
as an argument. Note that in that case not all the options provided via RestClientOptions
will be used. Here is the list of options that will work:
BaseAddress
will be used to set the base address of theHttpClient
instance if base address is not set there already.MaxTimeout
UserAgent
will be added to theRestClient.DefaultParameters
list as a HTTP header. This will be added to each request made by theRestClient
, and theHttpClient
instance will not be modified. This is to allow theHttpClient
instance to be reused for scenarios where differentUser-Agent
headers are required.Expect100Continue
Another option is to use a simple HTTP client factory as described above.
Blazor support
Inside a Blazor webassembly app, you can make requests to external API endpoints. Microsoft examples show how to do it with HttpClient
, and it's also possible to use RestSharp for the same purpose.
You need to remember that webassembly has some platform-specific limitations. Therefore, you won't be able to instantiate RestClient
using all of its constructors. In fact, you can only use RestClient
constructors that accept HttpClient
or HttpMessageHandler
as an argument. If you use the default parameterless constructor, it will call the option-based constructor with default options. The options-based constructor will attempt to create an HttpMessageHandler
instance using the options provided, and it will fail with Blazor, as some of those options throw thw "Unsupported platform" exception.
Here is an example how to register the RestClient
instance globally as a singleton:
builder.Services.AddSingleton(new RestClient(new HttpClient()));
Then, on a page you can inject the instance:
@page "/fetchdata"
@using RestSharp
@inject RestClient _restClient
And then use it:
@code {
private WeatherForecast[]? forecasts;
protected override async Task OnInitializedAsync() {
forecasts = await _restClient.GetJsonAsync<WeatherForecast[]>("http://localhost:5104/weather");
}
public class WeatherForecast {
public DateTime Date { get; set; }
public int TemperatureC { get; set; }
public string? Summary { get; set; }
public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);
}
}
In this case, the call will be made to a WebAPI server hosted at http://localhost:5104/weather
. Remember that if the WebAPI server is not hosting the webassembly itself, it needs to have a CORS policy configured to allow the webassembly origin to access the API endpoint from the browser.