Misaka.io | Docs
Misaka.io | Docs
API Documentation
Change password POST
Confirm email POSTLogout POSTRefresh user token POSTGet current user token GET
Get team members GETGet current available teams GET
List devices GET
Port info GETList ports GETPort transceiver metrics GETPort usage metrics GET
List services GET
List cross connects GET
Create IP announcements POSTDelete IP announcement DELETEGet IP announcements GETUpdate IP announcement PATCH
Lighthouse
Network Flow Timeseries POST
Event Attachments GETEvent Detail Related GETEvent List All GETEvent List Related GETEvent List Related Timeseries GET
Shield Rules List GETShield Rules Update PUT
Timezone For Location GET
Get Filter Keys GET
Batch Update PTR Records POST
Create RecordSet POSTDelete RecordSet DELETEGet RecordSet GETUpdate RecordSet PUT
Create Zone POSTDelete Zone DELETEImport Zone POSTList Zones GET
Disable DNSSEC DELETEEnable DNSSEC POSTGet DNSSEC Configuration GET
List Recordsets GET
Get Zone Settings GETUpdate Zone Settings PUT
IPAMBYOIP

Create IP announcements

POST
/v3/ipam/announcements

Authorization

AuthorizationBearer <token>

Bearer is only available for WebApp. Please use API tokens for programmatic access.

In: header

Request Body

application/json

prefixes*Prefixes

Prefixes to announce

origin_asn*integer

ASN to announce

region*string

Region to announce, needs to be a valid region slug

Length3 <= length <= 5
user?integer|null

User ID

Response Body

application/json

curl -X POST "https://api.misaka.io/v3/ipam/announcements" \  -H "Content-Type: application/json" \  -d '{    "prefixes": [      "string"    ],    "origin_asn": 0,    "region": "strin"  }'
[
  {
    "cidr": "string",
    "regions": [
      "string"
    ],
    "status": "string",
    "id": 0,
    "prefix": "string",
    "prefixlen": 0,
    "origin_asn": 0,
    "irr_validated": "2019-08-24T14:15:22Z",
    "rpki_validated": "2019-08-24T14:15:22Z",
    "loa_validated": "2019-08-24T14:15:22Z",
    "last_check": "2019-08-24T14:15:22Z",
    "last_check_result": true,
    "enabled": true,
    "created": "2019-08-24T14:15:22Z"
  }
]

How is this guide?

Last updated on

List cross connects GET

Previous Page

Delete IP announcement DELETE

Next Page

curl -X POST "https://api.misaka.io/v3/ipam/announcements" \
  -H "Content-Type: application/json" \
  -d '{
    "prefixes": [
      "string"
    ],
    "origin_asn": 0,
    "region": "strin"
  }'