Starlink Managed API

The Managed API from Starlink — 1 operation(s) for managed.

Operations 1

POST /public/v2/managed/customers Create a managed customer account

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/starlink-managed-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

starlink-managed-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Starlink Public Managed API
  description: '<h3>Description</h3>API to manage Starlink accounts and devices. For interactive endpoints list see: <a href=''https://starlink.readme.io/''>https://starlink.readme.io/</a><h3>Authentication - OIDC</h3><p>To authenticate with this API using OIDC, <a target=''_blank'' href=''/api/auth/.well-known/openid-configuration''>Well Known URL</a> and attach the result to your requests with the <strong>Authorize</strong> button below.</p>'
  version: '2'
servers:
- url: /api
tags:
- name: Managed
paths:
  /public/v2/managed/customers:
    post:
      tags:
      - Managed
      summary: Create a managed customer account
      description: This endpoint is only callable with an authorized provider account.
      requestBody:
        description: CreateManagedCustomerRequest
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateManagedCustomerRequest'
      responses:
        '400':
          description: Bad Request
        '401':
          description: Unauthorized
        '403':
          description: Forbidden from creating customer accounts
        '200':
          description: Successfully created customer account
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateManagedCustomerResponseServiceResponse'
        '422':
          description: Failed to create customer account
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ServiceResponse'
components:
  schemas:
    ServiceResponse:
      type: object
      properties:
        errors:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/ValidationResult'
          readOnly: true
        warnings:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/ValidationResult'
          readOnly: true
        information:
          type:
          - array
          - 'null'
          items:
            type: string
          readOnly: true
        isValid:
          type: boolean
          readOnly: true
      additionalProperties: false
    CreateManagedCustomerResponse:
      type: object
      properties:
        accountNumber:
          type:
          - string
          - 'null'
        serviceAccountClientId:
          type:
          - string
          - 'null'
        serviceAccountSecret:
          type:
          - string
          - 'null'
      additionalProperties: false
    ValidationResult:
      type: object
      properties:
        memberNames:
          type:
          - array
          - 'null'
          items:
            type: string
          readOnly: true
        errorMessage:
          type:
          - string
          - 'null'
      additionalProperties: false
    CreateManagedCustomerRequest:
      required:
      - email
      - firstName
      - lastName
      - locale
      - phone
      type: object
      properties:
        firstName:
          minLength: 1
          type: string
          description: First name.
        lastName:
          minLength: 1
          type: string
          description: Last name.
        email:
          minLength: 1
          type: string
          description: Email address.
        phone:
          minLength: 1
          type: string
          description: Phone number.
        locale:
          minLength: 1
          type: string
          description: ISO 639-1 language code.
        businessName:
          type:
          - string
          - 'null'
          description: Business name only required for enterprise customers.
      additionalProperties: false
    CreateManagedCustomerResponseServiceResponse:
      type: object
      properties:
        errors:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/ValidationResult'
          readOnly: true
        warnings:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/ValidationResult'
          readOnly: true
        information:
          type:
          - array
          - 'null'
          items:
            type: string
          readOnly: true
        isValid:
          type: boolean
          readOnly: true
        content:
          $ref: '#/components/schemas/CreateManagedCustomerResponse'
      additionalProperties: false