# Get catalog publication status Endpoint to check the current status of a catalog publication, using the generated id returned in the publication response. **GET** `/proximity/integration/v1/catalog/{publication_id}` ## Request parameters ### Path - `publication_id` (string, required) Publication ID returned by import process. ## Response parameters - `status` (string, optional) Current catalog publication process status. Possible enum values: - `processing` The catalog is being processed. - `error` The publication process has been aborted because some irrecoverable error occurred. - `success` the catalog has been published. ## Errors | Status | Error | Description | | ------- | ------- | ----------- | | 400 | error | Publication error caused by some inconsistency in the fields. | ## Request example ### cURL ```bash curl -X GET \ 'https://api.mercadopago.com/proximity/integration/v1/catalog/{publication_id}' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer ' ``` ## Response example ```json { "status": "success" } ```