Skip to main content
GET
/
api
/
embed
/
v1
/
users
/
{username}
/
events
Fetch embed user events
curl --request GET \
  --url https://evento.so/api/embed/v1/users/{username}/events
import requests

url = "https://evento.so/api/embed/v1/users/{username}/events"

response = requests.get(url)

print(response.text)
const options = {method: 'GET'};

fetch('https://evento.so/api/embed/v1/users/{username}/events', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://evento.so/api/embed/v1/users/{username}/events",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://evento.so/api/embed/v1/users/{username}/events"

req, _ := http.NewRequest("GET", url, nil)

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://evento.so/api/embed/v1/users/{username}/events")
.asString();
require 'uri'
require 'net/http'

url = URI("https://evento.so/api/embed/v1/users/{username}/events")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body

Endpoint

GET /api/embed/v1/users/{username}/events

Path parameters

username
string
required
Username (case-insensitive).

Query parameters

from
string
Inclusive start datetime (ISO 8601).
to
string
Inclusive end datetime (ISO 8601).
limit
integer
default:"50"
Number of events to return (max 100).

Request example

curl "https://evento.so/api/embed/v1/users/johndoe/events?from=2026-01-01T00:00:00Z&limit=10"

Response

{
  "success": true,
  "message": "Events fetched successfully",
  "data": [
    {
      "id": "evt_123",
      "title": "Monthly Tech Talks",
      "description": "Lightning talks and networking",
      "cover": "https://cdn.evento.so/covers/123.jpg",
      "start_date": "2026-06-15T18:00:00Z",
      "end_date": "2026-06-15T21:00:00Z",
      "timezone": "America/Los_Angeles",
      "location": {
        "name": "Tech Hub",
        "city": "San Francisco",
        "country": "United States"
      },
      "url": "https://evento.so/e/evt_123",
      "creator": {
        "username": "johndoe",
        "image": "https://cdn.evento.so/avatars/johndoe.jpg",
        "verified": true
      },
      "status": "upcoming"
    }
  ]
}

Filter notes

Filters are applied against computed_start_date with inclusive bounds.
status is computed per event based on start and end timestamps.

Next steps

Get /events/{eventId}

Fetch an embed event object by ID.

React components

Render feeds with prebuilt components.