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

# Get status information for a specific purl via a get request



## OpenAPI

````yaml /api-reference/components-openapi.json get /v2/components/status/component
openapi: 3.0.0
info:
  title: SCANOSS Components Service
  description: Provides component intelligence services
  version: '2.0'
  contact:
    name: scanoss-components
    url: https://github.com/scanoss/components
    email: support@scanoss.com
servers:
  - url: https://api.scanoss.com
  - url: http://api.scanoss.com
security: []
tags:
  - name: Components
paths:
  /v2/components/status/component:
    get:
      tags:
        - Components
      summary: Get status information for a specific purl via a get request
      operationId: Components_GetComponentStatus
      parameters:
        - name: purl
          description: Package URL identifying the component to analyze.
          in: query
          required: true
          schema:
            type: string
        - name: requirement
          description: >-
            Version constraint for component resolution when PURL lacks explicit
            version.
          in: query
          required: false
          schema:
            type: string
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v2ComponentStatusResponse'
        '404':
          description: Returned when the resource does not exist.
          content:
            application/json:
              schema:
                type: string
                format: string
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
components:
  schemas:
    v2ComponentStatusResponse:
      type: object
      example:
        purl: pkg:npm/strive-molu-axios
        name: strive-molu-axios
        requirement: ^0.0.1
        version_status:
          version: 0.0.1-beta.1
          status: deleted
          indexed_date: '2024-06-21'
          check_date: '2026-02-01'
        component_status:
          status: active
          first_indexed_date: '2022-03-01'
          last_indexed_date: '2026-02-15'
      properties:
        purl:
          type: string
          title: Purl requested
        name:
          type: string
          title: Name of the component
        requirement:
          type: string
          description: Requirement that should be met on the response.
        version_status:
          $ref: '#/components/schemas/ComponentStatusResponseVersionStatus'
        component_status:
          $ref: '#/components/schemas/ComponentStatusResponseComponentStatus'
      title: Component lifecycle status
    rpcStatus:
      type: object
      properties:
        code:
          type: integer
          format: int32
        message:
          type: string
        details:
          type: array
          items:
            $ref: '#/components/schemas/protobufAny'
    ComponentStatusResponseVersionStatus:
      type: object
      properties:
        version:
          type: string
          title: Specific version name
        status:
          type: string
          title: >-
            Development status of the requested version of this component
            classified automatically
        repository_status:
          type: string
          title: Raw status reported by the registry for this version
        indexed_date:
          type: string
          title: Date that the component was indexed
        status_change_date:
          type: string
          title: Date that the status was checked
        info_message:
          type: string
          description: Status message describing the outcome of processing this component.
        info_code:
          type: string
          description: |-
            Status code identifying the outcome of processing this component.

            Possible values:
              - "NO_INFO":             No status information is available for the requested component.
              - "INVALID_SEMVER":      The provided semantic version (SemVer) is invalid or malformed.
              - "VERSION_NOT_FOUND":   The specific component version could not be found.
      title: Component version status
    ComponentStatusResponseComponentStatus:
      type: object
      properties:
        status:
          type: string
          title: >-
            Development status of the requested component classified
            automatically
        repository_status:
          type: string
          title: Raw status reported by the registry for this component
        first_indexed_date:
          type: string
          title: Date of the first time component was indexed
        last_indexed_date:
          type: string
          title: Date of the last time component was indexed
        status_change_date:
          type: string
          title: Date of the last detected change
        info_message:
          type: string
          description: Status message describing the outcome of processing this component.
        info_code:
          type: string
          description: |-
            Status code identifying the outcome of processing this component.

            Possible values:
              - "INVALID_PURL":        The provided Package URL (PURL) is invalid or malformed.
              - "COMPONENT_NOT_FOUND": The requested component could not be found in the database.
              - "NO_INFO":             No status information is available for the requested component.
      title: Component status details (ignoring version)
    protobufAny:
      type: object
      properties:
        '@type':
          type: string
      additionalProperties: {}

````