curl --request GET \
--url https://api.streamkap.com/schema-registry/schemas/{schema_id} \
--header 'Authorization: Bearer <token>'{
"id": 123,
"schema": "<string>",
"subject": "<string>",
"version": 123,
"schema_type": "AVRO",
"references": [
{}
]
}Get a schema by its global ID.
curl --request GET \
--url https://api.streamkap.com/schema-registry/schemas/{schema_id} \
--header 'Authorization: Bearer <token>'{
"id": 123,
"schema": "<string>",
"subject": "<string>",
"version": 123,
"schema_type": "AVRO",
"references": [
{}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful Response
Complete schema information.
Was this page helpful?