Skip to main content
GET
/
api
/
r2r
/
v3
/
indices
/
{table_name}
/
{index_name}
Get Vector Index Details
curl --request GET \
  --url https://api.intelligence.io.solutions/api/r2r/v3/indices/{table_name}/{index_name} \
  --header 'Authorization: Bearer <token>'
{
  "results": {
    "index": {
      "key": "value"
    }
  }
}
Returns comprehensive information about the index including:
  • Configuration details (method, measure, parameters)
  • Current size and row count
  • Build progress (if still under construction)
  • Performance statistics:
    • Average query time
    • Memory usage
    • Cache hit rates
    • Recent query patterns
  • Maintenance information:
    • Last vacuum
    • Fragmentation level
    • Recommended optimizations

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

table_name
string
required

Name of the table where the index resides

index_name
string
required

Name of the specific index

Response

200

results
object
I