Relay Sse
import requests
url = "https://app.ubik-agent.com/api/v1/flow/mcp/{profile_id}/sse"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://app.ubik-agent.com/api/v1/flow/mcp/{profile_id}/sse', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request GET \
--url https://app.ubik-agent.com/api/v1/flow/mcp/{profile_id}/sse{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Relay Sse
GET
/
flow
/
mcp
/
{profile_id}
/
sse
Relay Sse
import requests
url = "https://app.ubik-agent.com/api/v1/flow/mcp/{profile_id}/sse"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://app.ubik-agent.com/api/v1/flow/mcp/{profile_id}/sse', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request GET \
--url https://app.ubik-agent.com/api/v1/flow/mcp/{profile_id}/sse{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Path Parameters
Response
Successful Response
Was this page helpful?
⌘I

