Skip to main content
GET
/
calls
cURL
curl --request GET \
  --url https://api.meetzy.io/calls \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "phone": "<string>",
    "email": "<string>",
    "firstname": "<string>",
    "lastname": "<string>",
    "playbook_id": "<string>",
    "voice_id": "<string>",
    "language": "<string>",
    "duration": 123,
    "status": "<string>",
    "summary": "<string>",
    "transcription:": "<string>",
    "sentiment:": "<string>",
    "recorded:": true,
    "record_url:": "<string>",
    "created_at": "<string>",
    "<custom_param_1>": "<string>",
    "<custom_param_2>": "<string>",
    "<custom_param_N>": "<string>"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Call response

id
string

The id of the call

phone
string

The phone to call with country prefix (e.g. +34600000000).

email
string

The email of the lead.

firstname
string

The firstname of the lead.

lastname
string

The lastname of the lead.

playbook_id
string

The id of the playbook you want to use to make the call. You can get the list of playbooks using your dashboard (/playbook endpoint will be available soon).

voice_id
string

The number of the voice to use (values: 1, 2, 3, 4, 5, random) - Default 3.

language
string

The language used by Flark during the call (values: ES, EN, FR, DE, IT, PT, ...) - Default ES.

duration
integer

The duration of the call in seconds.

status
string

The status of the call (values: queued, ringing, completed, failed, routed).

summary
string

The summary of the call.

transcription:
string

The transcription of the call.

sentiment:
string

The sentiment of the call (values: positive, neutral, negative, frustrated, angry, happy, sad, etc.

recorded:
boolean

If the call was recorded or not.

record_url:
string

The url of the recorded call.

created_at
string

The date and time when the call was created.

<custom_param_1>
string

A custom param you created when you created the call (like UTM, postal_code, program_of_insterest, etc.)

<custom_param_2>
string

A custom param you created when you created the call (like UTM, postal_code, program_of_insterest, etc.)

<custom_param_N>
string

You can add as many custom params as you want.