
Three Simple Methods to Invoke the Vidispine API From .NET Code by Vidispine June 15, 2016 Howto
Binagora is on fire and returns with another guest post. We know we have a bunch of developers on .NET, therefore we created a .NET SDK. This post shows how you can invoke the Vidispine API from .NET, using the SDK or using standard .NET classes. All with example code.
The following article describe three simple ways to invoke the Vidispine API from .NET code. Two of them use standard .NET classes, while the last one uses the Vidispine .NET SDK. Code snippets were written using C# but you can of course use another language, such as VB.NET, if you want to.
We'll use the simplest test case possible, and let us retrieve the id of the first available item in the Vidispine library.
First of all, let's see how it's done in Postman. As you may already know, it's just a simple http GET request to the Vidispine API to retrieve an item id.
Notice that we're using two Postman variables for a specific environment:
{{vs}}: this is the Vidispine base address (url + port)
{{credentials}}: this is the username and password in basic http format (:) encoded in base64.
Ok, that was the principle of how to query the Vidispine API for an item id. Now let's do the same thing from code.
Given the following constants:
C#
private const string address = http://xxx.xxx.xxx.xxx:8080/API; private const string userName = admin; private const string password = admin;
1
2
3
private const string address = http://xxx.xxx.xxx.xxx:8080/API;
private const string userName = admin;
private const string password = admin;
Option 1: Using WebRequest class
C#
private static string GetUsingWebRequest(string requestUri) { var request = (HttpWebRequest)WebRequest.Create(requestUri); request.Credentials = new NetworkCredential(userName, password); using(var response = (HttpWebResponse)request.GetResponse()) { var stream = response.GetResponseStream(); var reader = new StreamReader(stream); string result = reader.ReadToEnd(); return result; } }
1
2
3
4
5
6
7
8
9
10
11
12
13
14
private static string GetUsingWebRequest(string requestUri)
{
var request = (HttpWebRequest)WebRequest.Create(requestUri);
request.Credentials = new NetworkCredential(userName, password);
using(var response = (HttpWebResponse)request.GetResponse())
{
var stream = response.GetResponseStream();
var reader = new StreamReader(stream);
string result = reader.ReadToEnd();
return result;
}
}
Create a WebRequest, set the credentials and execute the request. Remember to release the request calling the Dispose() method or wrapping the instance into a using statement as we did in the sample.
Notice that in this case, we know the response contains a plain text with an item id. That's why we read the stream, and converts it into a string instead of a specific type.
Option 2: Using HttpClient class
C#
private static string GetUsingHttpClient(string requestUri) { var handler = new HttpClientHandler() { Credentials = new NetworkCredential(userName, password) }; var client = new HttpClient(handler); client.BaseAddress = new Uri(address); string message = client.GetStringAsync(requestUri).Result; return message; }
1
2
3
4
5
6
7
8
9
10
11
12
13
private static string GetUsingHttpClient(string requestUri)
{
var handler = new HttpClientHandler()
{
Credentials = new NetworkCredential(userName, password)
};
var client = new HttpClient(handler);
client.BaseAddress = new Uri(address);
string message = client.GetStringAsync(requestUri).Result;
return message;
}
Similar to previous option, it is just a matter of using another http client from the .NET framework.
In this case, credentials are specified on a client handler, then the http client is created using that handler.
The request is executed asynchronously, which is powerful and could be needed in a real situation.
In this case we're just reading the Result property immediately, but it's important to understand that the request is fired in an independent thread. Once thread is completed, you can execute your own callback.
Option 3: Using Vidispine .NET SDK
C#
private static string GetUsingVidispineSdk() { var rootResource = new VidispineResource(address).Authenticate(userName, password); var itemResource = rootResource.Item; string result = itemResource.SearchPlainGET.Number(1).CallText(); return result; }
1
2
3
4
5
6
7
8
private static string GetUsingVidispineSdk()
{
var rootResource = new VidispineResource(address).Authenticate(userName, password);
var itemResource = rootResource.Item;
string result = itemResource.SearchPlainGET.Number(1).CallText();
return result;
}
Finally the easiest way to do it, just call the SDK. Notice that in this case, the action to be executed is not part of the address. You specify the object and action based on the properties. We may say this is the strongly typed option to do it.
You can find more information about how to download and use the Vidispine .NET SDK in the post Getting Started With the Vidispine .NET SDK. If you want to try out the SDK, you can find the latest versions of the SDK here:
64-bit version of the Vidispine .NET SDK v4.5
32-bit version of the Vidispine .NET SDK v4.5
Running the app will show you the result 3 times, once for each option. In this case first item available is #525 but of course that will depend on your environment.
You can download the full console app code from the following GitHub Gist.
Hope you like it.
This blog post was written by our friends at Binagora. Check them out and see how they can help you with your next Media&Entertainment project.
Most recent headlines
05/01/2027
Worlds first 802.15.4ab-UWB chip verified by Calterah and Rohde & Schwarz to be ...
07/10/2026
Dalet, a leading technology and service provider for media-rich organizations, today announced the latest Long-Term Supported (LTS) release of Dalet Flex. Build...
06/09/2026
June 9 2026, 23:00 (PDT) Dolby and MagentaTV Bring Fans Closer to the FIFA Worl...
06/08/2026
The broadcaster's 14-race schedule begins in Iowa and ends in November with ...
06/08/2026
In-venue and creative video staffers at the professional and collegiate level ha...
06/08/2026
As media organizations consolidate teams, technology platforms, and content libr...
06/08/2026
Firmware updates introduce Dolby's next-generation picture engine, content-aware optimization, and new motion and ambient-light tools...
06/08/2026
TNT Sports will have wall-to-wall coverage of the upcoming FIBA Women's Bask...
06/08/2026
swXtch.io (Stand 5.MR13) has unveiled groundSwXtch for Audio over IP (AoIP), a software application that lets broadcasters and media organizations move audio in...
06/08/2026
At IBC2026, Riedel Communications (Stands: 10.A24, 10.A31, 10.A38) will bring modern media production to life with the Live Production Experience - a connected ...
06/08/2026
The first live-sports director to receive the prestigious honor, eight-time Emmy...
06/08/2026
NBC Sports will continue to present the Preakness Stakes on NBC and Peacock thro...
06/08/2026
Cobalt Digital (Stand 8.F90) continues to reinforce its commitment to delivering...
06/08/2026
Wave Central has promoted promotion Jeff Daubert to Director of Sales, Americas.
In his expanded role, Daubert will lead Wave Central's sales strategy and ...
06/08/2026
KMH Integration is expanding its ability to serve media, broadcast, and IT organizations by adding Keith Hanadel, an accomplished architect with decades of indu...
06/08/2026
Advanced Systems Group (ASG) has promoted Michele Ferreira from Vice President of its Systems Integration team to the newly created position of Chief Business O...
06/08/2026
Demonstrations will include new JPEG XS, Dolby audio, cloud-gateway, stream-processing, and distribution capabilities...
06/08/2026
The deal includes three premium mobile units, engineering personnel, existing br...
06/08/2026
Broadcast Management Group produced Amazon Prime's inaugural Obsessed Fest a...
06/08/2026
Exhibit will feature new variable-ND functionality, OLED viewfinders, remote-camera tools, and UHD production monitors...
06/08/2026
Compact full-frame E-mount lens targets sports, wildlife, and other long-range shooting applications...
06/08/2026
Live broadcast will honor Roger Federer and Mary Carillo on Aug. 29, with onsite...
06/08/2026
End-zone board receives higher-resolution LED technology and an updated Show Control system ahead of the 2026 football season...
06/08/2026
New 16- and 32-pad MIDI controllers now available
Fender have just announced that the two new performance-focused controllers that were unveiled at NAMM 202...
06/08/2026
Standalone version, performance improvements & more
Lewitt have just released a significant update for their speaker and room virtualisation software, intro...
06/08/2026
Combines celeste samples with synth engine
After launching earlier in 2026 with deFORM, ebbandflow have returned with their first sampled acoustic instrumen...
06/08/2026
SGL Carbon's consolidated sales in the first half of 2026 totaled 394.2 million, down 13.0% from the prior year (H1 2025: 453.2 million). On the one hand,...
06/08/2026
The BBC has announced casting for the forthcoming six-part series Hercule from Mammoth Screen and Agatha Christie Limited.
Joining Bluemel are Henry Ashton (A ...
06/08/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
06/08/2026
Proven offering builds on more than 20,000 live sporting events with greater automation, flexibility, and operational control
LTN , the industry leader in tran...
06/08/2026
Hornets Tech, a specialist in broadcast connectivity and IP video, is bringing a new range of encoders, decoders and an IPTV platform to IBC2026.
Broadcast in...
06/08/2026
Introducing Adobe for ChatGPT: Create, edit and get work done - all in ChatGPT
Deepti Pradeep August 6, 2026
0 Comments
The Adobe plugin in ChatGPT br...
06/08/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
06/08/2026
At IBC2026, MediaKind will make its first major appearance as a unified global powerhouse in video, showcasing one of the world's most comprehensive video i...
06/08/2026
Big Blue Marble (#5.A63) will demonstrate how its integrated technology and operational expertise help media companies scale premium services with less complexi...
06/08/2026
LA JOLLA, CA-Scripps Research has received more than $500,000 in first-year fund...
06/08/2026
LA JOLLA, CA-Viruses are masters at invading our cells thanks to specialized proteins that coat their surfaces. When scientists design vaccines, they often crea...
06/08/2026
LA JOLLA, CA-The brain has its own immune system, which detects threats and mounts a defense. A growing body of evidence has shown that in Alzheimer's disea...
06/08/2026
LA JOLLA, CA-Scripps Research chemist Jin-Quan Yu has been elected to the National Academy of Sciences (NAS), one of the highest honors a scientist can achieve....
06/08/2026
LA JOLLA, CA-Scripps Research ranked third in the inaugural 2026 Cure Innovation Index recognizing the top-performing institutes and centers across the United S...
06/08/2026
Benjamin Cravatt, the Gilula Chair of Chemical Biology and a professor of chemis...
06/08/2026
LA JOLLA, CA-Dennis Burton, professor and the James & Jessie Minor Chair in Immu...
06/08/2026
LA JOLLA, CA-Inside every human cell, proteins are constantly being tagged with small chemical modifications after they're produced. Known as post-translati...
06/08/2026
LA JOLLA-Scripps Research has established the Ian Wilson Endowed Chair, a new fa...
06/08/2026
Scripps Research's Skaggs Graduate School of Chemical and Biological Science...
06/08/2026
LA JOLLA, CA-Professor Jin-Quan Yu of Scripps Research has been elected to the Fellowship of the Royal Society, the U.K.'s national academy of sciences and ...
06/08/2026
LA JOLLA, CA-For years, researchers have been hoping for vaccines that protect people against not just one strain of HIV, but every strain of the quickly mutati...
06/08/2026
LA JOLLA, CA-The Calibr-Skaggs Institute for Innovative Medicines, the nonprofit...
06/08/2026
LA JOLLA, CA-Building the complex 3D molecules needed for new medicines has alwa...
06/08/2026
LA JOLLA, CA-Fentanyl and related variants of the synthetic opioid kill more Americans each year than car accidents and gun violence combined. In too-high doses...