Returns authenticated-principal transport, paging, batch, retention, and request ceilings. Release-dependent scientific semantics remain on immutable release resources.
GET
/
v1
/
homology
/
capabilities
Retrieve effective homology transport and request capabilities
curl --request GET \
--url https://api.rafflesia.ai/v1/homology/capabilities \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.rafflesia.ai/v1/homology/capabilities"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.rafflesia.ai/v1/homology/capabilities', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.rafflesia.ai/v1/homology/capabilities",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.rafflesia.ai/v1/homology/capabilities"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.rafflesia.ai/v1/homology/capabilities")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.rafflesia.ai/v1/homology/capabilities")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"ok": true,
"provenance": {
"created_at": "<string>",
"operation": "<string>",
"request_id": "<string>",
"server_version": "<string>",
"cache_hit": true,
"database_snapshots": [
{
"name": "<string>",
"version": "<string>",
"digest": "<string>",
"kind": "<string>"
}
],
"generated_object_ids": [
"<string>"
],
"input_hash": "<string>",
"parameters_hash": "<string>",
"tool_versions": [
{
"name": "<string>",
"version": "<string>",
"path": "<string>"
}
]
},
"warnings": [
{
"code": "<string>",
"message": "<string>",
"details": {}
}
],
"$schema": "<string>",
"data": {
"api_versions": [
"<string>"
],
"batch": {
"default_concurrency": 123,
"maximum_concurrency": 123,
"maximum_items": 123
},
"id": "hcap_current",
"object": "homology_capabilities",
"principal_limits": {
"maximum_billable_units": 123,
"maximum_deadline_ms": 123,
"maximum_results": 123,
"source": "deployment_default"
},
"query": {
"inline_kinds": [
"<string>"
],
"is_separately_size_limited": true,
"raw_sequence_retention": "digest_only",
"sequence_normalization_id": "<string>"
},
"results": {
"default_page_size": 123,
"evidence_kinds": [
"<string>"
],
"export_formats": [
"<string>"
],
"maximum_page_size": 123,
"maximum_results": 123,
"significance_modes": [
"<string>"
]
},
"retention": {
"class": "standard_30d",
"expired_resource_status_code": 123,
"idempotency_key_hours": 123,
"resource_days": 123
},
"transport": {
"create_request_headers": [
"<string>"
],
"default_wait_seconds": 123,
"is_async_supported": true,
"is_conditional_polling_supported": true,
"maximum_wait_seconds": 123,
"response_headers": [
"<string>"
]
}
},
"error": {
"code": "<string>",
"doc_url": "<string>",
"message": "<string>",
"details": {},
"param": "<string>"
},
"evidence": {
"warnings_count": 123,
"duration_ms": 123,
"input_refs": [
"<string>"
],
"object_refs": [
"<string>"
],
"output_refs": [
"<string>"
],
"row_count": 123
}
}{
"$schema": "<string>",
"detail": "<string>",
"errors": [
{
"location": "<string>",
"message": "<string>",
"value": "<unknown>"
}
],
"instance": "<string>",
"status": 123,
"title": "<string>",
"type": "about:blank"
}Authorizations
A Rafflesia API key, sent as Authorization: Bearer <key>.
Response
OK
Whether the operation succeeded.
Execution provenance.
Show child attributes
Show child attributes
Non-fatal warnings.
Show child attributes
Show child attributes
A URL to the JSON Schema for this object.
Example:
"https://example.com/schemas/EnvelopeHomologyCapabilities.json"
Operation result data.
Show child attributes
Show child attributes
Structured error information.
Show child attributes
Show child attributes
Mechanical evidence summary for agent inspection and chaining.
Show child attributes
Show child attributes
Previous
List searchable homology databasesReturns one cursor page of the homology databases available to search, each with its molecule type, the query kinds it accepts, the evidence it can return, and the immutable release its default alias resolves to when one is published. A search always executes against a release id, never against a mutable alias.
Next
⌘I
Retrieve effective homology transport and request capabilities
curl --request GET \
--url https://api.rafflesia.ai/v1/homology/capabilities \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.rafflesia.ai/v1/homology/capabilities"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.rafflesia.ai/v1/homology/capabilities', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.rafflesia.ai/v1/homology/capabilities",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.rafflesia.ai/v1/homology/capabilities"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.rafflesia.ai/v1/homology/capabilities")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.rafflesia.ai/v1/homology/capabilities")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"ok": true,
"provenance": {
"created_at": "<string>",
"operation": "<string>",
"request_id": "<string>",
"server_version": "<string>",
"cache_hit": true,
"database_snapshots": [
{
"name": "<string>",
"version": "<string>",
"digest": "<string>",
"kind": "<string>"
}
],
"generated_object_ids": [
"<string>"
],
"input_hash": "<string>",
"parameters_hash": "<string>",
"tool_versions": [
{
"name": "<string>",
"version": "<string>",
"path": "<string>"
}
]
},
"warnings": [
{
"code": "<string>",
"message": "<string>",
"details": {}
}
],
"$schema": "<string>",
"data": {
"api_versions": [
"<string>"
],
"batch": {
"default_concurrency": 123,
"maximum_concurrency": 123,
"maximum_items": 123
},
"id": "hcap_current",
"object": "homology_capabilities",
"principal_limits": {
"maximum_billable_units": 123,
"maximum_deadline_ms": 123,
"maximum_results": 123,
"source": "deployment_default"
},
"query": {
"inline_kinds": [
"<string>"
],
"is_separately_size_limited": true,
"raw_sequence_retention": "digest_only",
"sequence_normalization_id": "<string>"
},
"results": {
"default_page_size": 123,
"evidence_kinds": [
"<string>"
],
"export_formats": [
"<string>"
],
"maximum_page_size": 123,
"maximum_results": 123,
"significance_modes": [
"<string>"
]
},
"retention": {
"class": "standard_30d",
"expired_resource_status_code": 123,
"idempotency_key_hours": 123,
"resource_days": 123
},
"transport": {
"create_request_headers": [
"<string>"
],
"default_wait_seconds": 123,
"is_async_supported": true,
"is_conditional_polling_supported": true,
"maximum_wait_seconds": 123,
"response_headers": [
"<string>"
]
}
},
"error": {
"code": "<string>",
"doc_url": "<string>",
"message": "<string>",
"details": {},
"param": "<string>"
},
"evidence": {
"warnings_count": 123,
"duration_ms": 123,
"input_refs": [
"<string>"
],
"object_refs": [
"<string>"
],
"output_refs": [
"<string>"
],
"row_count": 123
}
}{
"$schema": "<string>",
"detail": "<string>",
"errors": [
{
"location": "<string>",
"message": "<string>",
"value": "<unknown>"
}
],
"instance": "<string>",
"status": 123,
"title": "<string>",
"type": "about:blank"
}