get-events-list

Use this API to get list of all events

Use this API to get the list of all events

POST https://api.memzo.ai/v1/get-events-list

Headers

Name
Type
Description

Authorization *

YOUR_SECRET_KEY

x-api-key*

String

YOUR_API_KEY

{
    "data": [
        {
            "event_id": "27",
            "event_name": "RishikeshTrip",
            "event_title": "Rishikesh Trip 2020",
            "event_image_url": "https://snapwrap-data.s3.ap-south-1.amazonaws.com/thumbnail/RishikeshTrip/IMG_5907.jpg",
            "datetime_created": "2020-11-26 21:23:09",
            "event_horizontal_logo": "https://snapwrap-data.s3.ap-south-1.amazonaws.com/event_cover_images/RishikeshTrip_horizontal.jpg",
            "event_vertical_logo": "https://snapwrap-data.s3.ap-south-1.amazonaws.com/event_cover_images/RishikeshTrip_vertical.jpg",
            "event_link": "https://photos.9letters.com/RishikeshTrip/27"
        },
        {
            "event_id": "33",
            "event_name": "TestRishikeshTrip",
            "event_title": "Rishikesh trip with friends",
            "event_image_url": "https://snapwrap.io/data/event_images/3320161223_151852.jpg",
            "datetime_created": "2020-12-05 20:40:30",
            "event_horizontal_logo": "https://snapwrap-data.s3.ap-south-1.amazonaws.com/event_cover_images/TestRishikeshTrip_horizontal.jpg",
            "event_vertical_logo": "https://snapwrap-data.s3.ap-south-1.amazonaws.com/event_cover_images/TestRishikeshTrip_vertical.jpg",
            "event_link": "https://photos.9letters.com/TestRishikeshTrip/33"
        },
        {
            "event_id": "650",
            "event_name": "Pradeepapp753",
            "event_title": "Pradeepapp",
            "event_image_url": "https://snapwrap-data.s3.ap-south-1.amazonaws.com/thumbnail/Pradeepapp753/al829rn_image_picker_lib_temp_4436b245-2b8f-4a5a-9778-3e6851c09050.jpg",
            "datetime_created": "2021-10-26 07:16:41",
            "event_horizontal_logo": "https://snapwrap-data.s3.ap-south-1.amazonaws.com/event_cover_images/Pradeepapp753_horizontal.jpg",
            "event_vertical_logo": "https://snapwrap-data.s3.ap-south-1.amazonaws.com/event_cover_images/Pradeepapp753_vertical.jpg",
            "event_link": "https://photos.9letters.com/Pradeepapp753/650"
        }
    ],
    "error": false,
    "message": "Success"
}
Sample Request
<?php

$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => 'https://api.memzo.ai/v1/get-events-list',
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => '',
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 0,
  CURLOPT_FOLLOWLOCATION => true,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => 'POST',
  CURLOPT_HTTPHEADER => array(
    'Authorization: YOUR_SECRET_KEY',
    'x-api-key: YOUR_API_KEY'
  ),
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;

For more detailed information, please refer to the full Postman documentation here.

Last updated