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

# Get Enterprise Data

> Fetches enterprise data using an API Key

### Authentication

Include your API key in the request's Authorization header.

### Response

<ResponseField name="success" type="boolean">
  Indicates if the request was successful
</ResponseField>

<ResponseField name="data" type="object">
  Enterprise data object with the following properties:

  <Expandable title="Enterprise Object">
    <ResponseField name="id" type="integer">
      Unique identifier for the enterprise
    </ResponseField>

    <ResponseField name="name" type="string">
      Name of the enterprise
    </ResponseField>

    <ResponseField name="apiKey" type="string">
      API key associated with the enterprise
    </ResponseField>
  </Expandable>
</ResponseField>

<RequestExample>
  ```bash theme={null}
  curl --request GET \
    --url https://api.getmycard.eu/api/zapier/getTeam \
    --header 'Authorization: YOUR_API_KEY'
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "success": true,
    "data": {
      "id": 1,
      "name": "Enterprise Name",
      "apiKey": "example_api_key"
    }
  }
  ```
</ResponseExample>
