> ## 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.

# Get Business Application Status

> This endpoint retrieves the current status of a business card application

### Params

<ParamField path="companyId" type="string" required>
  The company ID returned when creating the business application
</ParamField>

### Response

<ResponseField name="success" type="boolean">
  Indicates whether the call was successful
</ResponseField>

<ResponseField name="companyId" type="string">
  The unique company identifier
</ResponseField>

<ResponseField name="status" type="string">
  Application status: `pending`, `approved`, `rejected`, or `requires_documents`
</ResponseField>

<ResponseField name="name" type="string">
  Business name
</ResponseField>

<ResponseField name="entity" type="object">
  Business entity details
</ResponseField>

<ResponseField name="createdAt" type="string">
  ISO 8601 timestamp when the application was created
</ResponseField>

<ResponseField name="updatedAt" type="string">
  ISO 8601 timestamp when the application was last updated
</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>

### Error Responses

<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>
