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" />
                    
Directory.Packages.props
<PackageReference Include="RankVectors" />
                    
Project file
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
                    
#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
                    
Install as a Cake Addin
#tool nuget:?package=RankVectors&version=1.0.1
                    
Install as a Cake Tool

RankVectors C# SDK

NuGet Version NuGet Downloads

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

  1. Sign up for a RankVectors account
  2. Get your API key from Settings → API Keys
  3. Install the NuGet package
  4. Start optimizing your internal linking!

Documentation

License

MIT License - see LICENSE file for details.

Support

Product 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.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.1 140 10/26/2025
1.0.0 149 10/26/2025

Initial release of RankVectors C# SDK