Skip to main content
GET
/
api
/
agent
/
twins
Get available digital twins
curl --request GET \
  --url http://localhost:3000/api/agent/twins \
  --header 'x-access-token: <api-key>'
{
  "success": true,
  "data": [
    {
      "_id": "<string>",
      "name": "<string>",
      "ainame": "<string>",
      "picture": "<string>",
      "about": "<string>",
      "status": "active",
      "publicId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
    }
  ]
}

Authorizations

x-access-token
string
header
required

JWT token passed in x-access-token header

Response

Twins retrieved successfully

success
boolean
data
object[]