Check connection status
To track user connections to your application you can use this endpoint.
POST
/v1/connection/
curl \
-X POST https://api.infura.ai/v1/connection/ \
-H "x-api-key: $API_KEY" \
-d '{"type":"string","id":"string"}'
Request example
{
"type": "string",
"id": "string"
}
Response examples (200)
{
"type": "string",
"id": "string"
}