Skip to main content
GET
/
tasks
/
{taskId}
Get a task
curl --request GET \
  --url https://public-api.replo.app/api/v1/public/tasks/{taskId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Replo-Api-Version: <replo-api-version>'
{
  "object": "task",
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "title": "<string>",
  "emoji": "<string>",
  "rrule": "<string>",
  "nextRunAt": "<string>",
  "createdAt": "<string>",
  "updatedAt": "<string>"
}

Authorizations

Authorization
string
header
required

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

Headers

Replo-Api-Version
enum<string>
required

The public API version to use for this request.

Available options:
2026-06-27

Path Parameters

taskId
string<uuid>
required

Response

Get a task

object
enum<string>
required
Available options:
task
id
string<uuid>
required
title
string
required
emoji
string
required
rrule
string
required
nextRunAt
string | null
required
createdAt
string
required
updatedAt
string
required