service_info
Retrieve detailed configuration, status, and health information for a specific service to monitor deployments and ensure proper functionality within your Railway infrastructure.
Instructions
[API] Get detailed information about a specific service
⚡️ Best for: ✓ Viewing service configuration and status ✓ Checking deployment details ✓ Monitoring service health
→ Prerequisites: service_list
→ Next steps: deployment_list, variable_list
→ Related: service_update, deployment_trigger
Input Schema
Name | Required | Description | Default |
---|---|---|---|
environmentId | Yes | ID of the environment to check (usually obtained from service_list) | |
projectId | Yes | ID of the project containing the service | |
serviceId | Yes | ID of the service to get information about |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"environmentId": {
"description": "ID of the environment to check (usually obtained from service_list)",
"type": "string"
},
"projectId": {
"description": "ID of the project containing the service",
"type": "string"
},
"serviceId": {
"description": "ID of the service to get information about",
"type": "string"
}
},
"required": [
"projectId",
"serviceId",
"environmentId"
],
"type": "object"
}