Import by spec
Standalone
Importing protocols requires a Standalone instance. A Bundled instance is locked to serving its Specter instance’s backends.
Creates a protocol by posting the spec document directly.
curl --request POST \
--url https://{instance}.{env}.on-hellgate.cloud/api/admin/protocols \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"$id": "https://developer.hellgate.io/protocols/specter/v1",
"$schema": "https://developer.hellgate.io/schemas/link-protocol/v1",
"actions": {
"assess": {
"method": "POST",
"description": "Score a transaction for fraud risk.",
"request": {
"discriminator": "$.credential.type",
"variants": {
"pan": {
"type": "object",
"properties": {
"credential": {
"$ref": "#/components/schemas/PanCredential"
}
},
"required": [
"credential"
]
}
},
"required_variants": [
"pan"
]
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"value": {
"type": "string",
"enum": [
"ALLOW",
"REVIEW",
"BLOCK"
]
}
}
}
}
}
}
}
}
},
"components": {
"schemas": {
"PanCredential": {
"type": "object",
"properties": {
"value": {
"type": "string"
},
"scheme": {
"type": "string"
}
},
"required": [
"value"
]
}
}
},
"name": "Specter v1",
"version": "1.0.0"
}
'import requests
url = "https://{instance}.{env}.on-hellgate.cloud/api/admin/protocols"
payload = {
"$id": "https://developer.hellgate.io/protocols/specter/v1",
"$schema": "https://developer.hellgate.io/schemas/link-protocol/v1",
"actions": { "assess": {
"method": "POST",
"description": "Score a transaction for fraud risk.",
"request": {
"discriminator": "$.credential.type",
"variants": { "pan": {
"type": "object",
"properties": { "credential": { "$ref": "#/components/schemas/PanCredential" } },
"required": ["credential"]
} },
"required_variants": ["pan"]
},
"responses": { "200": { "content": { "application/json": { "schema": {
"type": "object",
"properties": { "value": {
"type": "string",
"enum": ["ALLOW", "REVIEW", "BLOCK"]
} }
} } } } }
} },
"components": { "schemas": { "PanCredential": {
"type": "object",
"properties": {
"value": { "type": "string" },
"scheme": { "type": "string" }
},
"required": ["value"]
} } },
"name": "Specter v1",
"version": "1.0.0"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
$id: 'https://developer.hellgate.io/protocols/specter/v1',
$schema: 'https://developer.hellgate.io/schemas/link-protocol/v1',
actions: {
assess: {
method: 'POST',
description: 'Score a transaction for fraud risk.',
request: {
discriminator: '$.credential.type',
variants: {
pan: {
type: 'object',
properties: {credential: {$ref: '#/components/schemas/PanCredential'}},
required: ['credential']
}
},
required_variants: ['pan']
},
responses: {
'200': {
content: {
'application/json': {
schema: {
type: 'object',
properties: {value: {type: 'string', enum: ['ALLOW', 'REVIEW', 'BLOCK']}}
}
}
}
}
}
}
},
components: {
schemas: {
PanCredential: {
type: 'object',
properties: {value: {type: 'string'}, scheme: {type: 'string'}},
required: ['value']
}
}
},
name: 'Specter v1',
version: '1.0.0'
})
};
fetch('https://{instance}.{env}.on-hellgate.cloud/api/admin/protocols', 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://{instance}.{env}.on-hellgate.cloud/api/admin/protocols",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'$id' => 'https://developer.hellgate.io/protocols/specter/v1',
'$schema' => 'https://developer.hellgate.io/schemas/link-protocol/v1',
'actions' => [
'assess' => [
'method' => 'POST',
'description' => 'Score a transaction for fraud risk.',
'request' => [
'discriminator' => '$.credential.type',
'variants' => [
'pan' => [
'type' => 'object',
'properties' => [
'credential' => [
'$ref' => '#/components/schemas/PanCredential'
]
],
'required' => [
'credential'
]
]
],
'required_variants' => [
'pan'
]
],
'responses' => [
'200' => [
'content' => [
'application/json' => [
'schema' => [
'type' => 'object',
'properties' => [
'value' => [
'type' => 'string',
'enum' => [
'ALLOW',
'REVIEW',
'BLOCK'
]
]
]
]
]
]
]
]
]
],
'components' => [
'schemas' => [
'PanCredential' => [
'type' => 'object',
'properties' => [
'value' => [
'type' => 'string'
],
'scheme' => [
'type' => 'string'
]
],
'required' => [
'value'
]
]
]
],
'name' => 'Specter v1',
'version' => '1.0.0'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://{instance}.{env}.on-hellgate.cloud/api/admin/protocols"
payload := strings.NewReader("{\n \"$id\": \"https://developer.hellgate.io/protocols/specter/v1\",\n \"$schema\": \"https://developer.hellgate.io/schemas/link-protocol/v1\",\n \"actions\": {\n \"assess\": {\n \"method\": \"POST\",\n \"description\": \"Score a transaction for fraud risk.\",\n \"request\": {\n \"discriminator\": \"$.credential.type\",\n \"variants\": {\n \"pan\": {\n \"type\": \"object\",\n \"properties\": {\n \"credential\": {\n \"$ref\": \"#/components/schemas/PanCredential\"\n }\n },\n \"required\": [\n \"credential\"\n ]\n }\n },\n \"required_variants\": [\n \"pan\"\n ]\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"type\": \"object\",\n \"properties\": {\n \"value\": {\n \"type\": \"string\",\n \"enum\": [\n \"ALLOW\",\n \"REVIEW\",\n \"BLOCK\"\n ]\n }\n }\n }\n }\n }\n }\n }\n }\n },\n \"components\": {\n \"schemas\": {\n \"PanCredential\": {\n \"type\": \"object\",\n \"properties\": {\n \"value\": {\n \"type\": \"string\"\n },\n \"scheme\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"value\"\n ]\n }\n }\n },\n \"name\": \"Specter v1\",\n \"version\": \"1.0.0\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://{instance}.{env}.on-hellgate.cloud/api/admin/protocols")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"$id\": \"https://developer.hellgate.io/protocols/specter/v1\",\n \"$schema\": \"https://developer.hellgate.io/schemas/link-protocol/v1\",\n \"actions\": {\n \"assess\": {\n \"method\": \"POST\",\n \"description\": \"Score a transaction for fraud risk.\",\n \"request\": {\n \"discriminator\": \"$.credential.type\",\n \"variants\": {\n \"pan\": {\n \"type\": \"object\",\n \"properties\": {\n \"credential\": {\n \"$ref\": \"#/components/schemas/PanCredential\"\n }\n },\n \"required\": [\n \"credential\"\n ]\n }\n },\n \"required_variants\": [\n \"pan\"\n ]\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"type\": \"object\",\n \"properties\": {\n \"value\": {\n \"type\": \"string\",\n \"enum\": [\n \"ALLOW\",\n \"REVIEW\",\n \"BLOCK\"\n ]\n }\n }\n }\n }\n }\n }\n }\n }\n },\n \"components\": {\n \"schemas\": {\n \"PanCredential\": {\n \"type\": \"object\",\n \"properties\": {\n \"value\": {\n \"type\": \"string\"\n },\n \"scheme\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"value\"\n ]\n }\n }\n },\n \"name\": \"Specter v1\",\n \"version\": \"1.0.0\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://{instance}.{env}.on-hellgate.cloud/api/admin/protocols")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"$id\": \"https://developer.hellgate.io/protocols/specter/v1\",\n \"$schema\": \"https://developer.hellgate.io/schemas/link-protocol/v1\",\n \"actions\": {\n \"assess\": {\n \"method\": \"POST\",\n \"description\": \"Score a transaction for fraud risk.\",\n \"request\": {\n \"discriminator\": \"$.credential.type\",\n \"variants\": {\n \"pan\": {\n \"type\": \"object\",\n \"properties\": {\n \"credential\": {\n \"$ref\": \"#/components/schemas/PanCredential\"\n }\n },\n \"required\": [\n \"credential\"\n ]\n }\n },\n \"required_variants\": [\n \"pan\"\n ]\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"type\": \"object\",\n \"properties\": {\n \"value\": {\n \"type\": \"string\",\n \"enum\": [\n \"ALLOW\",\n \"REVIEW\",\n \"BLOCK\"\n ]\n }\n }\n }\n }\n }\n }\n }\n }\n },\n \"components\": {\n \"schemas\": {\n \"PanCredential\": {\n \"type\": \"object\",\n \"properties\": {\n \"value\": {\n \"type\": \"string\"\n },\n \"scheme\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"value\"\n ]\n }\n }\n },\n \"name\": \"Specter v1\",\n \"version\": \"1.0.0\"\n}"
response = http.request(request)
puts response.read_body{
"id": "c4a1f2d0-5b3e-4f6a-8d29-1e7b9c0a2d43",
"inserted_at": "2026-04-02T10:15:00Z",
"local_id": "specter-v1",
"name": "Specter v1",
"url": "https://developer.hellgate.io/protocols/specter/v1",
"version": "1.0.0"
}{
"classifier": "UNAUTHORIZED",
"code": 401,
"message": "No valid means of authentication was provided"
}{
"classifier": "FORBIDDEN",
"code": 403,
"message": "Not allowed to access this resource or feature"
}{
"classifier": "CONFLICT",
"code": 409,
"message": "Protocol already imported"
}{
"classifier": "VALIDATION_ERROR",
"code": 422,
"validation_errors": [
{
"message": "must be a positive integer",
"path": "limit"
}
]
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
Protocol document
Full protocol specification document.
"https://developer.hellgate.io/protocols/specter/v1"
"https://developer.hellgate.io/schemas/link-protocol/v1"
The operations the protocol defines, keyed by action name. Each action declares its method, request schema (optionally discriminated into variants), and per-status response schemas.
{
"assess": {
"method": "POST",
"description": "Score a transaction for fraud risk.",
"request": {
"discriminator": "$.credential.type",
"variants": {
"pan": {
"type": "object",
"properties": {
"credential": {
"$ref": "#/components/schemas/PanCredential"
}
},
"required": ["credential"]
}
},
"required_variants": ["pan"]
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"value": {
"type": "string",
"enum": ["ALLOW", "REVIEW", "BLOCK"]
}
}
}
}
}
}
}
}
}
Reusable schema definitions referenced by actions via $ref.
{
"schemas": {
"PanCredential": {
"type": "object",
"properties": {
"value": { "type": "string" },
"scheme": { "type": "string" }
},
"required": ["value"]
}
}
}
"Specter v1"
"1.0.0"
Response
Protocol created
Summary of an imported or created protocol.
"c4a1f2d0-5b3e-4f6a-8d29-1e7b9c0a2d43"
"2026-04-02T10:15:00Z"
"specter-v1"
"Specter v1"
"https://developer.hellgate.io/protocols/specter/v1"
"1.0.0"
curl --request POST \
--url https://{instance}.{env}.on-hellgate.cloud/api/admin/protocols \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"$id": "https://developer.hellgate.io/protocols/specter/v1",
"$schema": "https://developer.hellgate.io/schemas/link-protocol/v1",
"actions": {
"assess": {
"method": "POST",
"description": "Score a transaction for fraud risk.",
"request": {
"discriminator": "$.credential.type",
"variants": {
"pan": {
"type": "object",
"properties": {
"credential": {
"$ref": "#/components/schemas/PanCredential"
}
},
"required": [
"credential"
]
}
},
"required_variants": [
"pan"
]
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"value": {
"type": "string",
"enum": [
"ALLOW",
"REVIEW",
"BLOCK"
]
}
}
}
}
}
}
}
}
},
"components": {
"schemas": {
"PanCredential": {
"type": "object",
"properties": {
"value": {
"type": "string"
},
"scheme": {
"type": "string"
}
},
"required": [
"value"
]
}
}
},
"name": "Specter v1",
"version": "1.0.0"
}
'import requests
url = "https://{instance}.{env}.on-hellgate.cloud/api/admin/protocols"
payload = {
"$id": "https://developer.hellgate.io/protocols/specter/v1",
"$schema": "https://developer.hellgate.io/schemas/link-protocol/v1",
"actions": { "assess": {
"method": "POST",
"description": "Score a transaction for fraud risk.",
"request": {
"discriminator": "$.credential.type",
"variants": { "pan": {
"type": "object",
"properties": { "credential": { "$ref": "#/components/schemas/PanCredential" } },
"required": ["credential"]
} },
"required_variants": ["pan"]
},
"responses": { "200": { "content": { "application/json": { "schema": {
"type": "object",
"properties": { "value": {
"type": "string",
"enum": ["ALLOW", "REVIEW", "BLOCK"]
} }
} } } } }
} },
"components": { "schemas": { "PanCredential": {
"type": "object",
"properties": {
"value": { "type": "string" },
"scheme": { "type": "string" }
},
"required": ["value"]
} } },
"name": "Specter v1",
"version": "1.0.0"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
$id: 'https://developer.hellgate.io/protocols/specter/v1',
$schema: 'https://developer.hellgate.io/schemas/link-protocol/v1',
actions: {
assess: {
method: 'POST',
description: 'Score a transaction for fraud risk.',
request: {
discriminator: '$.credential.type',
variants: {
pan: {
type: 'object',
properties: {credential: {$ref: '#/components/schemas/PanCredential'}},
required: ['credential']
}
},
required_variants: ['pan']
},
responses: {
'200': {
content: {
'application/json': {
schema: {
type: 'object',
properties: {value: {type: 'string', enum: ['ALLOW', 'REVIEW', 'BLOCK']}}
}
}
}
}
}
}
},
components: {
schemas: {
PanCredential: {
type: 'object',
properties: {value: {type: 'string'}, scheme: {type: 'string'}},
required: ['value']
}
}
},
name: 'Specter v1',
version: '1.0.0'
})
};
fetch('https://{instance}.{env}.on-hellgate.cloud/api/admin/protocols', 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://{instance}.{env}.on-hellgate.cloud/api/admin/protocols",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'$id' => 'https://developer.hellgate.io/protocols/specter/v1',
'$schema' => 'https://developer.hellgate.io/schemas/link-protocol/v1',
'actions' => [
'assess' => [
'method' => 'POST',
'description' => 'Score a transaction for fraud risk.',
'request' => [
'discriminator' => '$.credential.type',
'variants' => [
'pan' => [
'type' => 'object',
'properties' => [
'credential' => [
'$ref' => '#/components/schemas/PanCredential'
]
],
'required' => [
'credential'
]
]
],
'required_variants' => [
'pan'
]
],
'responses' => [
'200' => [
'content' => [
'application/json' => [
'schema' => [
'type' => 'object',
'properties' => [
'value' => [
'type' => 'string',
'enum' => [
'ALLOW',
'REVIEW',
'BLOCK'
]
]
]
]
]
]
]
]
]
],
'components' => [
'schemas' => [
'PanCredential' => [
'type' => 'object',
'properties' => [
'value' => [
'type' => 'string'
],
'scheme' => [
'type' => 'string'
]
],
'required' => [
'value'
]
]
]
],
'name' => 'Specter v1',
'version' => '1.0.0'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://{instance}.{env}.on-hellgate.cloud/api/admin/protocols"
payload := strings.NewReader("{\n \"$id\": \"https://developer.hellgate.io/protocols/specter/v1\",\n \"$schema\": \"https://developer.hellgate.io/schemas/link-protocol/v1\",\n \"actions\": {\n \"assess\": {\n \"method\": \"POST\",\n \"description\": \"Score a transaction for fraud risk.\",\n \"request\": {\n \"discriminator\": \"$.credential.type\",\n \"variants\": {\n \"pan\": {\n \"type\": \"object\",\n \"properties\": {\n \"credential\": {\n \"$ref\": \"#/components/schemas/PanCredential\"\n }\n },\n \"required\": [\n \"credential\"\n ]\n }\n },\n \"required_variants\": [\n \"pan\"\n ]\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"type\": \"object\",\n \"properties\": {\n \"value\": {\n \"type\": \"string\",\n \"enum\": [\n \"ALLOW\",\n \"REVIEW\",\n \"BLOCK\"\n ]\n }\n }\n }\n }\n }\n }\n }\n }\n },\n \"components\": {\n \"schemas\": {\n \"PanCredential\": {\n \"type\": \"object\",\n \"properties\": {\n \"value\": {\n \"type\": \"string\"\n },\n \"scheme\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"value\"\n ]\n }\n }\n },\n \"name\": \"Specter v1\",\n \"version\": \"1.0.0\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://{instance}.{env}.on-hellgate.cloud/api/admin/protocols")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"$id\": \"https://developer.hellgate.io/protocols/specter/v1\",\n \"$schema\": \"https://developer.hellgate.io/schemas/link-protocol/v1\",\n \"actions\": {\n \"assess\": {\n \"method\": \"POST\",\n \"description\": \"Score a transaction for fraud risk.\",\n \"request\": {\n \"discriminator\": \"$.credential.type\",\n \"variants\": {\n \"pan\": {\n \"type\": \"object\",\n \"properties\": {\n \"credential\": {\n \"$ref\": \"#/components/schemas/PanCredential\"\n }\n },\n \"required\": [\n \"credential\"\n ]\n }\n },\n \"required_variants\": [\n \"pan\"\n ]\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"type\": \"object\",\n \"properties\": {\n \"value\": {\n \"type\": \"string\",\n \"enum\": [\n \"ALLOW\",\n \"REVIEW\",\n \"BLOCK\"\n ]\n }\n }\n }\n }\n }\n }\n }\n }\n },\n \"components\": {\n \"schemas\": {\n \"PanCredential\": {\n \"type\": \"object\",\n \"properties\": {\n \"value\": {\n \"type\": \"string\"\n },\n \"scheme\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"value\"\n ]\n }\n }\n },\n \"name\": \"Specter v1\",\n \"version\": \"1.0.0\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://{instance}.{env}.on-hellgate.cloud/api/admin/protocols")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"$id\": \"https://developer.hellgate.io/protocols/specter/v1\",\n \"$schema\": \"https://developer.hellgate.io/schemas/link-protocol/v1\",\n \"actions\": {\n \"assess\": {\n \"method\": \"POST\",\n \"description\": \"Score a transaction for fraud risk.\",\n \"request\": {\n \"discriminator\": \"$.credential.type\",\n \"variants\": {\n \"pan\": {\n \"type\": \"object\",\n \"properties\": {\n \"credential\": {\n \"$ref\": \"#/components/schemas/PanCredential\"\n }\n },\n \"required\": [\n \"credential\"\n ]\n }\n },\n \"required_variants\": [\n \"pan\"\n ]\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"type\": \"object\",\n \"properties\": {\n \"value\": {\n \"type\": \"string\",\n \"enum\": [\n \"ALLOW\",\n \"REVIEW\",\n \"BLOCK\"\n ]\n }\n }\n }\n }\n }\n }\n }\n }\n },\n \"components\": {\n \"schemas\": {\n \"PanCredential\": {\n \"type\": \"object\",\n \"properties\": {\n \"value\": {\n \"type\": \"string\"\n },\n \"scheme\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"value\"\n ]\n }\n }\n },\n \"name\": \"Specter v1\",\n \"version\": \"1.0.0\"\n}"
response = http.request(request)
puts response.read_body{
"id": "c4a1f2d0-5b3e-4f6a-8d29-1e7b9c0a2d43",
"inserted_at": "2026-04-02T10:15:00Z",
"local_id": "specter-v1",
"name": "Specter v1",
"url": "https://developer.hellgate.io/protocols/specter/v1",
"version": "1.0.0"
}{
"classifier": "UNAUTHORIZED",
"code": 401,
"message": "No valid means of authentication was provided"
}{
"classifier": "FORBIDDEN",
"code": 403,
"message": "Not allowed to access this resource or feature"
}{
"classifier": "CONFLICT",
"code": 409,
"message": "Protocol already imported"
}{
"classifier": "VALIDATION_ERROR",
"code": 422,
"validation_errors": [
{
"message": "must be a positive integer",
"path": "limit"
}
]
}