Which documentation are you looking for?

Do not know how to start integrating? 

Check the first steps
Get catalog publication status

GET

https://api.mercadopago.com/proximity/integration/v1/catalog/{publication_id}
Endpoint to check the current status of a catalog publication, using the generated id returned in the publication response..
Request's parameters
PATH
publication_id
string

REQUIRED

Publication ID returned by import process.
Response parameters
status
string
Current catalog publication process status.
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

400Description of the error.

error

Publication error caused by some inconsistency in the fields.

Request
curl -X GET \
      'https://api.mercadopago.com/proximity/integration/v1/catalog/{publication_id}'\
       -H 'Content-Type: application/json' \
       -H 'Authorization: Bearer TEST-8971*********918-01191*********5874530a4*********4799fdf-1*********' \
       
Sample answer
{
  "status": "success"
}