action threatjammer_query_registry_names_v1_asn_registry_all_get { label: "Get the list of the Regional Internet Registries (RIRs) entities worldwide." description: "### What\nObtain the list of Regional Internet Registries (RIRs) entities worldwide.\n\n### Parameters\nNo parameters are required.\n\n### Result\nThe result is a JSON object with a list of the following JSON objects:\n- ``self``: the URI to individual RIR.\n- ``name``: the RIR name.\n- ``code``: the internal code of the RIR in the system. Possible values are: iana, arin, ripencc, afrinic, apnic, lacnic.\n\n### Errors\nIt will return the API Global errors described in the API description." provider: threatjammer method: GET path: "/v1/asn/registry/all" encoding: json output: { type: "array" items: { type: "object" description: "The Registry information" required: ["code", "name", "self"] properties: { code: { type: "string" } name: { type: "string" } self: { type: "string" } } } } }