Skip to main content
GET
https://api.taap.it
/
v1
/
projects
/
{project_id}
Retrieve Project
curl --request GET \
  --url https://api.taap.it/v1/projects/{project_id} \
  --header 'Authorization: <authorization>'
{
  "id": "<string>",
  "name": "<string>",
  "description": "<string>",
  "created_at": "<string>"
}
Request:
cURL
curl -X GET 'https://api.taap.it/v1/projects/project_987654321' \
  -H 'Authorization: Bearer taapit_your_api_key_here'
Response:
{
  "id": "project_987654321",
  "name": "Summer Marketing Campaign",
  "description": "Links for our summer marketing campaign",
  "created_at": "2024-01-15T10:30:00Z"
}

Authorization

Authorization
string
required
Bearer token for API authentication. Format: Bearer YOUR_API_KEY

Path Parameters

project_id
string
required
Unique identifier for the project

Response Fields

id
string
required
Unique identifier for the project
name
string
required
Name of the project
description
string
Description of the project
created_at
string
required
ISO 8601 timestamp when the project was created