## Get information about the specified slot `client.networkInterconnects.slots.get(stringslot, SlotGetParamsparams, RequestOptionsoptions?): SlotGetResponse` **get** `/accounts/{account_id}/cni/slots/{slot}` Get information about the specified slot ### Parameters - `slot: string` - `params: SlotGetParams` - `account_id: string` Customer account tag ### Returns - `SlotGetResponse` - `id: string` Slot ID - `facility: Facility` - `address: Array` - `name: string` - `occupied: boolean` Whether the slot is occupied or not - `site: string` - `speed: string` - `account?: string` Customer account tag ### Example ```node import Cloudflare from 'cloudflare'; const client = new Cloudflare({ apiToken: process.env['CLOUDFLARE_API_TOKEN'], // This is the default and can be omitted }); const slot = await client.networkInterconnects.slots.get('182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e', { account_id: 'account_id', }); console.log(slot.id); ``` #### Response ```json { "id": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e", "facility": { "address": [ "string" ], "name": "name" }, "occupied": true, "site": "site", "speed": "speed", "account": "account" } ```