> ## 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 User Profile

> Fetches the first profile associated with a user identified by 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">
  User profile object with the following properties:

  <Expandable title="User Profile Object">
    <ResponseField name="id" type="integer">
      Unique identifier for the user
    </ResponseField>

    <ResponseField name="name" type="string">
      Full name of the user
    </ResponseField>

    <ResponseField name="email" type="string">
      Email address
    </ResponseField>

    <ResponseField name="phone" type="string">
      Phone number
    </ResponseField>

    <ResponseField name="location" type="string">
      Geographic location
    </ResponseField>

    <ResponseField name="createdAt" type="string">
      Timestamp of when the profile was created
    </ResponseField>
  </Expandable>
</ResponseField>

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

<ResponseExample>
  ```json theme={null}
  {
    "success": true,
    "data": {
      "id": 1,
      "name": "John Doe",
      "email": "john.doe@example.com",
      "phone": "+1234567890",
      "location": "New York, USA",
      "createdAt": "2023-05-01T00:00:00Z"
    }
  }
  ```
</ResponseExample>
