
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...
22/08/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
22/08/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
22/08/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
22/08/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
22/08/2026
Avid brings agentic media production to IBC2026
Brie Clayton August 21, 2026
0 Comments
After launching Avid Content Core at NAB 2026, Avid expands it...
22/08/2026
Making of Lord of the Flies Shot with Pocket Cinema Camera 6K Pro
Brie Clayton August 21, 2026
0 Comments
Filmmaker Lisa Marie Russo shoots on the bea...
22/08/2026
Homecoming Artist Spotlight: Dogs In A Pile The rising jam band talks about where it all started on the Berklee campus ahead of their Homecoming performance o...
22/08/2026
Berklee Alumna Lexi Vollero MA '22 Receives Fulbright Award to Brazil Vollero, a Berklee NYC graduate, has been selected for a Fulbright Open Research Awa...
21/08/2026
A massive deployment of specialty cameras, graphics, and AR will showcase the na...
21/08/2026
The West Coast Conference unveiled its new 30-second public service announcement, the latest expression of the Conference's We Rise in the West brand iden...
21/08/2026
New look will serve as the foundation for ESPN's upcoming NFL season and Sup...
21/08/2026
ESPN will air the ninth annual MLB Little League Classic presented by New York Life on Sunday, August 23, at 7 p.m. ET from Historic Bowman Field in Williamspor...
21/08/2026
In an emotional acceptance speech in Canton, Grossman celebrated the pioneering ...
21/08/2026
Hardware-style timing shifts for software instruments
Following on from the release of Omniclock, Rapid Flow have launched a new sequencer plug-in that can ...
21/08/2026
Highly anticipated synthesizer ships in October 2026
Iceland-based Love Synthesizers have announced that their highly anticipated synthesizer is now availab...
21/08/2026
Masterpiece PBS The Forsytes has expanded its cast as its begins production in ...
21/08/2026
The BBC has unveiled first-look pictures from The Witch Farm, a new ghost story and mystery set in the Welsh countryside, coming soon to BBC iPlayer and BBC One...
21/08/2026
The BBC and BritBox have revealed the first look of Edward Bluemel as Hercule Poirot in the forthcoming six-part series Hercule from Mammoth Screen and Agatha C...
21/08/2026
Our priority was making the best, most powerful, most meaningful story possible,...
21/08/2026
eds3_5_jq(document).ready(function($) { $(#eds_sliderM519).chameleonSlider_2_1({ content_source:......
21/08/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
21/08/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
21/08/2026
Avid will unveil how it is transforming production to help media organizations unite content, agentic workflows, and business insights at IBC2026 (RAI Amsterda...
21/08/2026
New routing, modular processing, orchestration and monitoring capabilities bridge dedicated hardware and software-based processing as part of the Dynamic Media ...
21/08/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
21/08/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
21/08/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
21/08/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
21/08/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
21/08/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
21/08/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
21/08/2026
When hundreds of thousands of people gather to hear a single voice, there is no room for compromise. Every word must be delivered clearly, every wireless transm...
21/08/2026
Telestream, a global leader in media workflow technologies, today announced a strategic partnership with ScorePlay, the AI-powered media infrastructure that spo...
21/08/2026
NUGEN Audio announces the launch of its new Post Plan and Producer Plan, two flexible subscription offerings designed to give audio professionals short term acc...
21/08/2026
Join the Screen Currency 2026 Ask Me Anything (AMA) Online 20 August 2026
(L-R): Adrian Coates, Grainne Brunsdon, Deirdre Brennan, Rachael Perkins
Got questio...
21/08/2026
** MEDIA ALERT **
VIZ Media Takes Over Anime NYC with BLEACH, BLACK TORCH, M...
21/08/2026
Tell us a little bit about your job I'm a Marketing Manager and work across a mix of clients and projects. No two days are ever quite the same, which defini...
21/08/2026
Beat The Lotto dives into the plot behind the 1980s National Lottery scandal
24 August 2026 at 9:35pm on RT One and RT Player
Beat The Lotto is the story o...
21/08/2026
The countdown to the most wonderful night of the year has officially begun!
Host Patrick Kielty is gearing up for another unforgettable Late Late Toy Show nig...
21/08/2026
Meet puppet duo Bellie and Whizz, who are about to explore all the big feelings ...
20/08/2026
From host-broadcaster and rightsholder support in June and July to MLS, NWSL, US...
20/08/2026
In-venue and creative video staffers at the professional and collegiate level ha...
20/08/2026
At IBC this year, Veritone (14.A56) is bringing two connected themes to the booth: architectural independence in enterprise AI, and the automation of the media ...
20/08/2026
Telestream and ScorePlay have announced a partnership combining Telestream's...
20/08/2026
The Grand Slam of Curling and Rock League have announced a three-year agreement with ESPN, bringing more than 300 hours of live curling coverage to U.S. audienc...
20/08/2026
Nielsen has announced a series of enhancements to its Big Data + Panel currency measurement methodology, taking effect August 31. The updates were developed in ...
20/08/2026
Net Insight has been selected by service provider Big Blue Marble (formerly ORS Group) to provide its Nimbra platform as the core media transport solution for a...