Skip to main content
GET
https://tickward.com/api/v1
/
projects
/
{project_id}
/
shares
/
{share_id}
Get a shared timer link
curl --request GET \
  --url https://tickward.com/api/v1/projects/{project_id}/shares/{share_id} \
  --header 'Authorization: Bearer <token>'
{
  "object": "share",
  "id": "share_123",
  "project_id": "project_123",
  "project_name": "Main",
  "timer_id": "timer_123",
  "timer_label": "Flight check-in",
  "shared_at": "2026-06-07T12:10:00.000Z",
  "url_path": "/share/share_123",
  "created_at": "2026-06-07T12:10:00.000Z",
  "updated_at": "2026-06-07T12:10:00.000Z"
}

Authorizations

Authorization
string
header
default:tw_your_api_key
required

Use a tickward API key from Settings. API keys start with tw_. Store keys as secrets and send them as Authorization: Bearer <key>.

Path Parameters

project_id
string
required
share_id
string
required

Response

Share link.

object
string
required
Allowed value: "share"
id
string
required
project_id
string
required
project_name
string
required

Human-readable project name for agent confirmations.

timer_id
string | null
required
timer_label
string | null
required

Current timer label when the share still points at a timer in this project.

shared_at
string<date-time> | null
required
Example:

"2026-10-10T09:30:00.000Z"

url_path
string
required
Example:

"/share/abc123"

created_at
string<date-time>
required

ISO 8601 datetime string. Prefer UTC with Z or an explicit offset.

Pattern: ^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}
Example:

"2026-10-10T09:30:00.000Z"

updated_at
string<date-time>
required

ISO 8601 datetime string. Prefer UTC with Z or an explicit offset.

Pattern: ^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}
Example:

"2026-10-10T09:30:00.000Z"