
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...
04/08/2026
Dalet, a leading technology and service provider for media-rich organizations, t...
03/08/2026
SVG's annual TranSPORT conference returns to New York City for a full day of sessions focused on the current state of live-sports-transmission technology. S...
03/08/2026
A five-time Emmy winner, this esports vet has built a production career on live storytelling, audience connection, and meeting viewers wherever they are
The sp...
03/08/2026
Live production in the cloud is a growing trend across the industry and Major Le...
03/08/2026
(L-R) Nyah B., Nala B., Shannon Elizabeth S., Celia K., Olive G., and Nikki B. attend the Q&A for Cookie Queens by Alysa Nahmias, an official selection of the...
03/08/2026
Recreates a 1977 Hohner Clavinet D6
After launching a software recreation of their own electric piano, Rhodes set about capturing another classic instrument...
03/08/2026
A modern solution for an old technique
Peak Tamer is a new standalone application that automatically applies gain automation to keep rogue peaks under cont...
03/08/2026
Plug-in gains object metadata automation export
Sound Particles have just released an update that adds a new Metadata Automation function to their their rec...
03/08/2026
SGL Carbon and X-energy today announced a binding agreement to double SGL's production capacity for medium-grain isotropic graphite ( NBG-18 ), a specialize...
03/08/2026
Glensound will launch the Greater Divine Supernal at PLASA Show 2026, extending its intelligent loudspeaker range for professional studio monitoring and live au...
03/08/2026
How Agua Tinta's Class Project Launched Her Songwriting Career Two years after graduating from Berklee, the songwriter has a Latin Grammy nomination, a So...
03/08/2026
Leiden University's new Campus Spui, located in the heart of The Hague, the diplomatic and administrative centre of the Netherlands, opened in February 2026...
03/08/2026
Bitfocus, the specialist in media control and monitoring, has received a further boost to its plans for continuing growth, particularly in Europe and North Amer...
03/08/2026
Jason Flemyng, Tessa Peake-Jones, Lee Ingleby and Georgia Tennant join the cast ...
03/08/2026
Building on the momentum of a landmark year for soccer in North America, Leagues...
02/08/2026
Classic EQ design goes virtual
Following on from the launch of the 500-series version of their BAX EQ unit, Dangerous Music have now teamed up with modellin...
02/08/2026
The Government's Missing Dimension
This article was originally published on the National Preparedness Commission website on 25 June 2026.
----------------...
01/08/2026
Latest free Vaults instrument released
The Crow Hill Company's Vaults collection offers a continually rotating selection of virtual instruments and samp...
01/08/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
01/08/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
01/08/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
01/08/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
01/08/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
01/08/2026
COW Jobs: Lead Generation Representative - Animation Services
Brie Clayton July 31, 2026
0 Comments
Lead Generation Representative - Animation Service...
01/08/2026
Emilie Lowe Shoots Award Winning Short Film Where Dead Things Grow with Blackmag...
01/08/2026
Early Registration Opens for the 2026 SMPTE Media Technology Summit
Brie Clayton July 31, 2026
0 Comments
Initial Program Announced Alongside New Medi...
31/07/2026
With an emphasis on local, the league is looking beyond the initial four teams t...
31/07/2026
The 2026 Sundance Institute Directors Lab fellows in Estes Park, Colorado (Photo by Gabe Rovick)
Dear Friends,
This has been an extraordinary year for our ar...
31/07/2026
Offers 360-degree sound placement in any DAW
Audiocube have just announced the launch of a new plug-in that embeds a complete 3D acoustic environment inside...
31/07/2026
10 new Chinese C-Pop voices introduced
While Sonarworks are best known to many for their room-correction software, their product range also includes an inno...
31/07/2026
Reimagines the vintage BBD sound character
PSPaudioware have now officially launched the new delay plug-in that they were previewing at GearExpo UK. Said to...
31/07/2026
The Savannah Bananas has built its reputation on refusing to play baseball by traditional rules, and the team's production arm Banana Ball TV (BTV) has draf...
31/07/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
31/07/2026
SMPTE, the home for media professionals, technologists and engineers, today opened early registration for the 2026 Media Technology Summit (MTS) and announced i...
31/07/2026
Clear-Com announced that Central Christian Church has transformed communication across its live production operations by implementing Clear-Com's LQ Seri...
31/07/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
31/07/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
31/07/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
31/07/2026
IBC has unveiled the finalists for the IBC2026 Innovation Awards, recognising collaborative projects from around the world that solve real-world challenges and ...
31/07/2026
From focus puller to colourist
Caroline Shawley July 30, 2026
0 Comments
Ana Mar a Ormaza shares her story of instinct, storytelling and finding a cre...
31/07/2026
Amazon Prime Documentary Andata e Ritorno Relies on Blackmagic Design
Brie Clayton July 30, 2026
0 Comments
DaVinci Resolve Studio and Blackmagic Clou...
31/07/2026
Krotos Launches Video to Sound Plugin for DaVinci Resolve
Brie Clayton July 30, 2026
0 Comments
AI-assisted workflow helps editors add synchronized, p...
31/07/2026
Athletics, Camogie, the Dublin Horse Show, the FAI Cup, Golf, Hockey, the UEFA C...
31/07/2026
Luxembourg, July 31, 2026 - Pursuant to the liquidity contract entered into by SES with BNP Paribas as of 7 April 2026, please see the below update on the progr...
31/07/2026
Luxembourg, July 31, 2026 - SES today published a restatement of its FY2025 EU Taxonomy (Article 8) disclosure. The restatement updates the FY2025 EU Taxonomy d...
31/07/2026
RT Commercial has today announced Mercedes-Benz Ireland will return as the offi...
31/07/2026
RT Supporting the Arts is delighted to spotlight a diverse range of arts, culture and heritage events taking place across Ireland this August. From major festi...