## Get ASN Overview. `client.intel.asn.get(ASNasn, ASNGetParamsparams, RequestOptionsoptions?): ASN` **get** `/accounts/{account_id}/intel/asn/{asn}` Gets an overview of the Autonomous System Number (ASN) and a list of subnets for it. ### Parameters - `asn: ASN` - `params: ASNGetParams` - `account_id: string` Identifier. ### Returns - `ASN = number` ### 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 asn = await client.intel.asn.get(0, { account_id: '023e105f4ecef8ad9ca31a8372d0c353' }); console.log(asn); ``` #### Response ```json { "errors": [ { "code": 1000, "message": "message", "documentation_url": "documentation_url", "source": { "pointer": "pointer" } } ], "messages": [ { "code": 1000, "message": "message", "documentation_url": "documentation_url", "source": { "pointer": "pointer" } } ], "success": true, "result": 0 } ```