Skip to main content

Overview

The contacts query is designed to fetch a list of all contacts associated with the authenticated user. Contacts are people who have participated in meetings with the user, and include information such as email, name, profile picture, and the date of their last meeting together.

Schema

Fields available to the Contact query

Usage Example

query Contacts {
  contacts {
    email
    name
    picture
    last_meeting_date
  }
}
curl -X POST \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer your_api_key" \
	--data '{ "query": "{ contacts { email name picture last_meeting_date } }" }' \
	https://api.fireflies.ai/graphql
{
  "data": {
    "contacts": [
      {
        "email": "[email protected]",
        "name": "John Doe",
        "picture": "https://example.com/photo.jpg",
        "last_meeting_date": "2024-12-05"
      },
      {
        "email": "[email protected]",
        "name": "Jane Smith",
        "picture": null,
        "last_meeting_date": "2024-11-28"
      }
    ]
  }
}

Additional Resources