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

# Product tagging status of an Instagram account

> Says whether products can be tagged, and when not, exactly what is missing: no authorization yet, an expired one, a shop Meta has not approved, or a shop with no catalog. Meta is re-checked at most every 6 hours unless `refresh=true`.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/shopping/{accountId}/status
openapi: 3.0.0
info:
  title: PlugKit API
  description: >-
    One API to publish, schedule and message across Instagram, WhatsApp, TikTok,
    Telegram, YouTube and X.
  version: 1.0.0
  contact: {}
servers: []
security: []
tags: []
paths:
  /v1/shopping/{accountId}/status:
    get:
      tags:
        - shopping
      summary: Product tagging status of an Instagram account
      description: >-
        Says whether products can be tagged, and when not, exactly what is
        missing: no authorization yet, an expired one, a shop Meta has not
        approved, or a shop with no catalog. Meta is re-checked at most every 6
        hours unless `refresh=true`.
      operationId: ShoppingController_status
      parameters:
        - name: accountId
          required: true
          in: path
          schema:
            type: string
        - name: refresh
          required: true
          in: query
          schema:
            type: string
      responses:
        '200':
          description: ''
      security:
        - api-key: []
components:
  securitySchemes:
    api-key:
      scheme: bearer
      bearerFormat: sk_...
      type: http

````