Work with this as data
Every API here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for apis
7 MCP tools reach this
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/jina-ai-reranker-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
OpenAPI Specification
openapi: 3.2.0
info:
title: Jina AI Reranker API
description: Re-rank a list of candidate documents against a query using Jina AI's reranker models. Returns scored, ordered results to improve the relevance of retrieved documents in RAG and search pipelines.
version: '1.0'
contact:
name: Jina AI
url: https://jina.ai
servers:
- url: https://api.jina.ai/v1
description: Jina AI production API
security:
- BearerAuth: []
tags:
- name: Reranker
description: Cross-encoder reranking
paths:
/rerank:
post:
tags:
- Reranker
summary: Rerank documents against a query
description: Score and reorder a set of candidate documents by relevance to the provided query, optionally returning the top N results.
operationId: rerank
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/RerankRequest'
responses:
'200':
description: Reranked results
content:
application/json:
schema:
$ref: '#/components/schemas/RerankResponse'
'401':
description: Unauthorized
'429':
description: Rate limit exceeded
components:
schemas:
RerankResponse:
type: object
properties:
model:
type: string
usage:
type: object
properties:
total_tokens:
type: integer
results:
type: array
items:
type: object
properties:
index:
type: integer
relevance_score:
type: number
format: float
document:
type: object
properties:
text:
type: string
RerankRequest:
type: object
required:
- model
- query
- documents
properties:
model:
type: string
enum:
- jina-reranker-v3
- jina-reranker-v2-base-multilingual
- jina-colbert-v2
- jina-reranker-m0
query:
type: string
description: Search query
documents:
type: array
description: Candidate documents to rerank
items:
oneOf:
- type: string
- type: object
properties:
text:
type: string
image:
type: string
top_n:
type: integer
description: Maximum number of results to return
return_documents:
type: boolean
description: Whether to include document content in response
securitySchemes:
BearerAuth:
type: http
scheme: bearer
bearerFormat: API Key