> ## Documentation Index
> Fetch the complete documentation index at: https://docs.theswarm.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Network Mapper Status

> Poll the status of a long-running Network Mapper (Partner) task.

Poll the status of a long-running [Network Mapper (Partner)](/docs/endpoints/v3/network-mapper) task.

<Warning>
  **Partner permission required.** Calls from an API key not tied to a team with the partner permission in Stripe return **403 Forbidden**.
</Warning>


## OpenAPI

````yaml openapi.json GET /v3/network-mapper/status
openapi: 3.1.0
info:
  title: Swarm API
  version: 1.0.0
  contact:
    name: The Swarm
    url: https://theswarm.com
    email: hello@theswarm.com
servers:
  - url: https://bee.theswarm.com
security:
  - ApiKeyAuth: []
tags:
  - name: profiles
    description: Operations related to profiles
  - name: companies
    description: Operations related to companies
  - name: teams
    description: Operations for managing teams and connectors
  - name: social
    description: Operations related to social media posts and interactions
  - name: mcp
    description: Model Context Protocol endpoint for AI assistant integrations
  - name: credits
    description: Operations related to credit usage
  - name: network-mapper
    description: Operations for mapping connections and relationships across your network
paths:
  /v3/network-mapper/status:
    get:
      tags:
        - network-mapper
      summary: Network Mapper (Partner) Status
      description: >-
        Poll the status of a long-running Network Mapper (Partner) v3 task.
        Partner permission required.
      operationId: getPartnerNetworkStatusV3
      parameters:
        - name: task_id
          in: query
          required: true
          description: Task ID returned from POST /v3/network-mapper
          schema:
            type: string
      responses:
        '200':
          description: Current status of the mapping task
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    description: Status of the network mapping task
                    enum:
                      - Unknown
                      - MappingFailed
                      - NotMapped
                      - MappingInProgress
                      - Mapped
                required:
                  - status
        '400':
          $ref: '#/components/responses/400'
        '401':
          $ref: '#/components/responses/401'
        '403':
          description: >-
            Forbidden — the API key is not tied to a team with partner
            permission.
        5XX:
          $ref: '#/components/responses/5XX'
      security:
        - ApiKeyAuth: []
components:
  responses:
    '400':
      description: Bad request
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    '401':
      description: Unauthorized
    5XX:
      description: Unexpected error
  schemas:
    ErrorResponse:
      type: object
      properties:
        code:
          description: Error status code
          type: integer
        errors:
          type: array
          items:
            type:
              - string
              - object
      required:
        - code
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````