RankVectors 1.0.1
dotnet add package RankVectors --version 1.0.1
NuGet\Install-Package RankVectors -Version 1.0.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="RankVectors" Version="1.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="RankVectors" Version="1.0.1" />
<PackageReference Include="RankVectors" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add RankVectors --version 1.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: RankVectors, 1.0.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package RankVectors@1.0.1
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=RankVectors&version=1.0.1
#tool nuget:?package=RankVectors&version=1.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
RankVectors C# SDK
Official RankVectors API SDK for C# - Intelligent internal linking optimization using AI.
Installation
Install via NuGet Package Manager:
Install-Package RankVectors
Or via .NET CLI:
dotnet add package RankVectors
Or via PackageReference:
<PackageReference Include="RankVectors" Version="1.0.0" />
Quick Start
using RankVectors.Client;
using RankVectors.com.rankvectors.api;
using RankVectors.com.rankvectors.model;
// Initialize the API client
var hostConfig = new HostConfiguration
{
BaseUrl = "https://api.rankvectors.com"
};
var apiKey = new ApiKeyToken("YOUR_API_KEY", TokenPosition.Header);
var projectsApi = new ProjectsApi(hostConfig);
projectsApi.ApiKey = apiKey;
// Create a project
var request = new CreateProjectRequest
{
Name = "My Website",
WebsiteUrl = "https://example.com"
};
var project = await projectsApi.CreateProjectAsync(request);
Console.WriteLine($"Created project: {project.Name}");
Features
- AI-Powered Analysis: Uses OpenAI embeddings to find optimal linking opportunities
- Smart Crawling: Automatically crawls and analyzes your website content
- Automated Implementation: Implement links via webhooks or manual instructions
- Credit-Based System: Pay-per-use model with transparent pricing
- Multi-Platform Support: Works with any CMS or platform via REST API
Requirements
- .NET 9.0 or later
- Active RankVectors API key
Getting Started
- Sign up for a RankVectors account
- Get your API key from Settings → API Keys
- Install the NuGet package
- Start optimizing your internal linking!
Documentation
License
MIT License - see LICENSE file for details.
Support
- Email: support@rankvectors.com
- Documentation: https://docs.rankvectors.com
- Issues: https://github.com/RankVectors/csharp-sdk/issues
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net9.0
- Microsoft.Extensions.Hosting (>= 9.0.5)
- Microsoft.Extensions.Http (>= 9.0.5)
- Microsoft.Extensions.Http.Polly (>= 9.0.5)
- Microsoft.Net.Http.Headers (>= 9.0.5)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Initial release of RankVectors C# SDK