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

# Obtener estado de la solicitud empresarial

> Este endpoint obtiene el estado actual de una solicitud de tarjeta empresarial

### Parámetros

<ParamField path="companyId" type="string" required>
  El ID de empresa devuelto al crear la solicitud empresarial
</ParamField>

### Respuesta

<ResponseField name="success" type="boolean">
  Indica si la operación fue exitosa
</ResponseField>

<ResponseField name="companyId" type="string">
  El identificador único de la empresa
</ResponseField>

<ResponseField name="status" type="string">
  Estado de la solicitud: `pending`, `approved`, `rejected` o `requires_documents`
</ResponseField>

<ResponseField name="name" type="string">
  Nombre de la empresa
</ResponseField>

<ResponseField name="entity" type="object">
  Datos de la entidad empresarial
</ResponseField>

<ResponseField name="createdAt" type="string">
  Fecha y hora (ISO 8601) de cuándo se creó la solicitud
</ResponseField>

<ResponseField name="updatedAt" type="string">
  Fecha y hora (ISO 8601) de la última actualización de la solicitud
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl --location --request GET 'https://stablecoin-api.sandbox.getmeru.com/api/v1/cards-program/applications/business/8f3e1a2b-4c5d-6e7f-8a9b-0c1d2e3f4a5b' \
  --header 'Content-Type: application/json' \
  --header 'api-key: <api-key>'
  ```

  ```js Javascript theme={null}
  const response = await fetch('https://stablecoin-api.sandbox.getmeru.com/api/v1/cards-program/applications/business/8f3e1a2b-4c5d-6e7f-8a9b-0c1d2e3f4a5b', {
    method: 'GET',
    headers: {
      'Content-Type': 'application/json',
      'api-key': '<api-key>'
    }
  });

  const data = await response.json();
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "companyId": "8f3e1a2b-4c5d-6e7f-8a9b-0c1d2e3f4a5b",
    "status": "approved",
    "name": "Acme Corporation",
    "entity": {
      "name": "Acme Corporation LLC",
      "type": "LLC",
      "industry": "Technology"
    },
    "createdAt": "2024-01-15T10:00:00Z",
    "updatedAt": "2024-01-16T14:30:00Z"
  }
  ```
</ResponseExample>

### Respuestas de error

<ResponseExample>
  ```json 401 theme={null}
  {
    "success": false,
    "error": "Unauthorized. Please check your authentication credentials."
  }
  ```

  ```json 404 theme={null}
  {
    "success": false,
    "error": "Business application not found."
  }
  ```
</ResponseExample>
