https://github.com/panoramicdata/uk.companieshouse.api
A nuget package for the Companies House REST API.
https://github.com/panoramicdata/uk.companieshouse.api
Last synced: 9 months ago
JSON representation
A nuget package for the Companies House REST API.
- Host: GitHub
- URL: https://github.com/panoramicdata/uk.companieshouse.api
- Owner: panoramicdata
- License: mit
- Created: 2021-06-03T19:57:46.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2022-06-27T11:07:03.000Z (almost 4 years ago)
- Last Synced: 2025-06-03T02:12:57.968Z (about 1 year ago)
- Language: C#
- Size: 535 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# Uk.CompaniesHouse.Api
A nuget package for the Companies House REST API.
[](https://www.nuget.org/packages/Uk.CompaniesHouse.Api/)
To use the Companies House nuget package:
## Visual Studio
1. Open your project in Visual Studio
1. Right-click on the project and click "Manage Nuget packages"
1. Find the package "Uk.CompaniesHouse.Api" - install the latest version
## Example code (C# 8.0):
``` C#
using Uk.CompaniesHouse.Api;
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace My.Project
{
public static class Program
{
public static async Task Main()
{
var filingHistoryInfo = await Client
.Company
.GetFilingHistoryByIdAsync(", default")
.ConfigureAwait(false);
Console.WriteLine($"Action date: {filingHistoryInfo.Items[0].ActionDate}");
}
}
}
````