> For the complete documentation index, see [llms.txt](https://rest-api.symphony.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://rest-api.symphony.com/main/info-health-check/agent-info-v1.md).

# Agent Info

## GET /v1/info

> Get information about the Agent

```json
{"openapi":"3.0.1","info":{"title":"Agent API","version":"25.8.1"},"servers":[{"url":"youragentURL.symphony.com/agent"}],"paths":{"/v1/info":{"get":{"tags":["Signals"],"summary":"Get information about the Agent","responses":{"200":{"description":"Agent info.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AgentInfo"}}}},"400":{"description":"Client error, see response body for further details.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/V2Error"}}}},"401":{"description":"Unauthorized: Session tokens invalid.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/V2Error"}}}},"403":{"description":"Forbidden: Caller lacks necessary entitlement.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/V2Error"}}}},"500":{"description":"Server error, see response body for further details.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/V2Error"}}}}}}}},"components":{"schemas":{"AgentInfo":{"type":"object","properties":{"ipAddress":{"type":"string","description":"The IP address of the Agent server."},"hostname":{"type":"string","description":"The hostname of the Agent server."},"serverFqdn":{"type":"string","description":"The fully-qualified domain name of the Agent server. Must be set by the user at startup."},"version":{"type":"string","description":"The version of the Agent."},"url":{"type":"string","description":"The URL under which the Agent is available."},"onPrem":{"type":"boolean","description":"Whether this is an on-prem or cloud installation."},"mt":{"type":"boolean","description":"Whether this is a multi tenant instance."},"commitId":{"type":"string","description":"The Git commit ID of the running revision."}}},"V2Error":{"required":["code","message"],"type":"object","properties":{"code":{"type":"integer","format":"int32"},"message":{"type":"string"},"details":{"type":"object"}}}}}}
```
