Skip to main content

/rerank

Overview

FeatureSupportedNotes
Cost TrackingWorks with all supported models
LoggingWorks across all integrations
FallbacksWorks between supported models
LoadbalancingWorks between supported models
Supported ProvidersCohere, Together AI, Azure AI, Jina AI, AWS Bedrock, HuggingFace, Vertex AI, Fireworks AI, Voyage AI

Quick Start

cURL

curl https://api.haimaker.ai/v1/rerank \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "cohere/rerank-english-v3.0",
"query": "What is the capital of the United States?",
"documents": [
"Carson City is the capital city of the American state of Nevada.",
"The Commonwealth of the Northern Mariana Islands is a group of islands in the Pacific Ocean. Its capital is Saipan.",
"Washington, D.C. is the capital of the United States.",
"Capital punishment has existed in the United States since before it was a country."
],
"top_n": 3
}'

Request Parameters

ParameterTypeRequiredDescription
modelstringYesThe reranking model to use (e.g., cohere/rerank-english-v3.0)
querystringYesThe search query to rerank documents against
documentsarrayYesList of documents to rerank
top_nintegerNoNumber of top results to return

Response Format

{
"id": "rerank-abc123",
"results": [
{
"index": 2,
"relevance_score": 0.98,
"document": {
"text": "Washington, D.C. is the capital of the United States."
}
},
{
"index": 0,
"relevance_score": 0.45,
"document": {
"text": "Carson City is the capital city of the American state of Nevada."
}
},
{
"index": 1,
"relevance_score": 0.32,
"document": {
"text": "The Commonwealth of the Northern Mariana Islands is a group of islands in the Pacific Ocean. Its capital is Saipan."
}
}
],
"meta": {
"api_version": {"version": "1"},
"billed_units": {"search_units": 1}
}
}

Supported Providers

ProviderDocumentation Link
Cohere (v1 + v2 clients)Usage
Together AIUsage
Azure AIUsage
Jina AIUsage
AWS BedrockUsage
HuggingFaceUsage
InfinityUsage
vLLMUsage
DeepInfraUsage
Vertex AIUsage
Fireworks AIUsage
Voyage AIUsage