## Retrieve `client.slas.retrieve(stringurn, RequestOptionsoptions?): SlaRetrieveResponse` **get** `/v1/slas/{urn}` Fetch in-depth information about a single SLA ### Parameters - `urn: string` ### Returns - `SlaRetrieveResponse` - `description: string` A description of the SLA - `name: string` The name of the SLA - `urn: string` A unique identifier for the SLA - `vendor_urn: string` A unique identifier for the vendor associated with the SLA ### Example ```typescript import Clarative from 'clarative'; const client = new Clarative({ apiKey: process.env['CLARATIVE_API_KEY'], // This is the default and can be omitted }); const sla = await client.slas.retrieve('urn'); console.log(sla.description); ```