Trusted by data teams worldwide

Intelligent Search Results Re-Ranking

An AI-powered system that automatically re-ranks your search results for maximum relevance and user engagement.

Simple API Integration

Get started with just a few lines of code

// Send your search results for re-ranking
const response = await fetch('https://rerank-api.prodgain.com/api/v1/re-rank', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
    'x-api-key': 'your-api-key'
  },
  body: JSON.stringify({
    documents: searchResults,
    query: 'user search query',
    threshold: 1-5 (optional)
  })
})

const rerankedResults = await response.json();