
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 ...
04/08/2026
Dalet, a leading technology and service provider for media-rich organizations, t...
04/07/2026
April 7 2026, 19:00 (PDT) Detective Conan: Fallen Angel of the Highway Opens in...
01/06/2026
January 6 2026, 05:30 (PST) Dolby Sets the New Standard for Premium Entertainment at CES 2026
Throughout the week, Dolby brings to life the latest innovatio...
09/05/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
09/05/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
08/05/2026
NBC's 9:16 live-production workflows power Courtside Live, Rinkside Live, Vi...
08/05/2026
Native 1080p HDR productions will rely on a mix of remote workflows from Bristol and Los Angeles
Despite another prosperous WNBA season in 2025, there was no g...
08/05/2026
In-venue and creative video staffers at the professional and collegiate level ha...
08/05/2026
Players Era, an EverWonder Studio company, and ESPN have announced a multi-year ...
08/05/2026
BFBS (British Forces Broadcasting Service) has announced the selection of Syname...
08/05/2026
UFC and Joe Hand Promotions, UFC's exclusive commercial distributor in the U...
08/05/2026
Ease Live, an Evertz company, has announced it has been granted US Patent No. 12,556,777 for its graphical overlay technology for interactive live streaming. Th...
08/05/2026
Ateme has announced that VTVcab has deployed Ateme's OTT platform to power its VTVprime streaming service in Vietnam. The deployment covers live and on-dema...
08/05/2026
Amagi has announced the availability of its In-Content Ads offering via the Amagi ADS PLUS marketplace, providing programmatic access to ad formats inserted dir...
08/05/2026
Young broadcaster will deploy 11-camera complement, At the Line' scorebug f...
08/05/2026
Ratings Roundup is a rundown of recent rating news and is derived from press rel...
08/05/2026
FOX Sports, America's English-language home for the FIFA World Cup 2026, and...
08/05/2026
Molly Gordon and Ben Platt appear in Theater Camp. (Courtesy of Searchlight Pictures)
By Lucy Spicer
Her character is the beloved founder of the AdirondACTS...
08/05/2026
One-button synth generates random four-track ideas
Cyma Forma and French artist Bambounou have announced RND synth, a compact hardware synthesizer built aro...
08/05/2026
Portable four-layer granular and sampling instrument
Tasty Chips have announced the GR-2, a new granular synthesizer and sampling instrument that combines e...
08/05/2026
Video Show Report
Video of SUPERBOOTH 26: Polyend Drums
Polyends big announcement for Superbooth 2026 is the Drums, a new drum machine that features both ...
08/05/2026
Deal agreed as NI enters new chapter
Native Instruments CEO Nick Williams has announced that a definitive agreement has been signed for the company to be ac...
08/05/2026
Video Show Report
Video of SUPERBOOTH 26: Erica Bullfrog Drums
The Bullfrog Drums is the latest collaboration between Erica Synths and Richie Hawtin, and ...
08/05/2026
In our latest blog, Tim Pearson reflects on the recent launch of Play Snooker, the new digital home of snooker by the World Professional Billiards and Snooker A...
08/05/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
08/05/2026
Riedel Communications today announced its return as a sponsor of the Glasgow 2026 Commonwealth Games, where the company will serve as the Official Connectivity ...
08/05/2026
For the second straight year, Miri Technologies Inc. has been honored with a pair of coveted awards at the broadcast, media and entertainment industry's pre...
08/05/2026
Nine Alumni Nominated for Tony Awards More than 20 alumni contributed to this year's Tony-nominated productions.
May 7, 2026
By
Tori Donahue
Boston Co...
08/05/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
08/05/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
08/05/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
08/05/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
08/05/2026
Liberty University on why broadcast technology isn't just a technical invest...
08/05/2026
COW Jobs: UGC, On-Camera Video Content
Brie Clayton May 7, 2026
0 Comments
UGC, On-Camera Video Content
April 17, 2026Documentary Editor - US,......
08/05/2026
Pete reunites with Dogs Trust for a fourth series and a two-part overseas special
London, Friday 8th May 2026: The award winning factual entertainment series P...
08/05/2026
Wuppertal May 8, 2026
Riedel to Support Glasgow 2026 as Official Connectivity Integration Provider Riedel Communications today announced its return as a spons...
08/05/2026
Back to All News
Netflix Announces Standalone Sequel to Global Hit La Palma
Entertainment
08 May 2026
GlobalDenmarkFinlandNorwaySweden
Link copied to clipb...
08/05/2026
ICG is excited to share news of our official launch in Northern Ireland, marking a significant milestone in the agency's growth.
Led by Digital Marketing M...
08/05/2026
Over the past ten years, Thames Water, in partnership with Arqiva, has installed more than 1.2 million smart meters, creating one of the most extensive advanced...
07/05/2026
Journalists reporting on Sudan are working in one of the most complex and fast-m...
07/05/2026
Multi-year partnership positions Victory+ as a free home for Dallas Cowboys orig...
07/05/2026
From sideline reporting to directing and producing, the talented sophomore is building a well-rounded foundation for a career in live sports production
In the ...
07/05/2026
Cobalt Digital has received two Future Best of Show awards at NAB Show 2026. The COBALT blueCORE platform was recognized by TV Tech, and the COBALT PACIFIC ULL-...
07/05/2026
ESPN analyst Mina Kimes will host the televised semifinals and finals of the 202...
07/05/2026
Bitmovin has announced that MUBI, the global film streaming platform, has selected Bitmovin as its cloud VOD encoding partner. Bitmovin's encoding infrastru...
07/05/2026
NBCUniversal Telemundo Enterprises and the U.S. Soccer Federation have announced...
07/05/2026
Angel City Football Club (ACFC) and Victory have announced a regional broadcast partnership bringing live match coverage to fans across the greater Los Angeles...
07/05/2026
Spiideo has announced the launch of AI Highlights inside Spiideo Play, its automated sports production platform. AI Highlights combines video, event data, audio...
07/05/2026
Leostream Corporation has announced a unified remote access ecosystem for high-p...