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

> Fetches connections for 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="array">
  Array of connection objects with the following properties:

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

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

    <ResponseField name="position" type="string">
      Job position/title
    </ResponseField>

    <ResponseField name="company" type="string">
      Company name
    </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="picture" type="string">
      URL to profile picture
    </ResponseField>

    <ResponseField name="note" type="string">
      Additional notes about the connection
    </ResponseField>

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

    <ResponseField name="tags" type="array">
      Array of tags associated with the connection
    </ResponseField>

    <ResponseField name="userId" type="integer">
      ID of the user who owns this connection
    </ResponseField>
  </Expandable>
</ResponseField>

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

<ResponseExample>
  ```json theme={null}
  {
    "success": true,
    "data": [
      {
        "id": 1,
        "name": "John Doe",
        "position": "Manager",
        "company": "ABC Corp",
        "email": "john.doe@example.com",
        "phone": "+1234567890",
        "location": "New York, USA",
        "picture": "url_to_picture",
        "note": "Met at conference",
        "createdAt": "2023-05-01T00:00:00Z",
        "tags": ["tag1", "tag2"],
        "userId": 123
      }
    ]
  }
  ```
</ResponseExample>
