## Retrieve `slas.retrieve(strurn) -> SlaRetrieveResponse` **get** `/v1/slas/{urn}` Fetch in-depth information about a single SLA ### Parameters - `urn: str` ### Returns - `class SlaRetrieveResponse: …` - `description: str` A description of the SLA - `name: str` The name of the SLA - `urn: str` A unique identifier for the SLA - `vendor_urn: str` A unique identifier for the vendor associated with the SLA ### Example ```python import os from clarative import Clarative client = Clarative( api_key=os.environ.get("CLARATIVE_API_KEY"), # This is the default and can be omitted ) sla = client.slas.retrieve( "urn", ) print(sla.description) ```