Skip to Content

Get Project

Retrieve the full detail record for a single recording project.

GEThttps://api.identitycall.ai/api/v1/public/projects/:id

Get a project's full configuration plus recording and virtual number counts.

Requires read permission

API Key Scope

ScopeBehavior
Account-wideCan fetch any project in the account.
Project-scopedCan only fetch its own project. Other IDs return 404.

Path Parameters

Parameters

NameTypeRequiredDefaultDescription
idintegerYes-Numeric project ID.

Request

curl -X GET "https://api.identitycall.ai/api/v1/public/projects/42" \ -H "Authorization: Bearer $IDENTITYCALL_API_KEY"

Response

Response200 OK
{
"data": {
  "id": 42,
  "name": "Customer Support EN",
  "language": "en",
  "industry": "ecommerce",
  "created_at": "2026-04-15T10:00:00Z",
  "updated_at": "2026-04-15T11:32:00Z",
  "description": "Inbound English-language support line.",
  "goal_language": "en",
  "summary_language": "en",
  "long_pause_threshold_seconds": 5,
  "transcription_hints": "IdentityCall, KYC, SCA",
  "retention_days": 365,
  "quality_baseline_enabled": true,
  "quality_baseline_pct": 75.0,
  "recordings_count": 1284,
  "virtual_numbers_count": 3
}
}

Response Fields

FieldTypeDescription
idintegerNumeric project ID.
namestringDisplay name.
languagestring | nullDefault ISO language code.
industrystring | nullIndustry tag.
created_atstringISO 8601 creation timestamp.
updated_atstringISO 8601 last-modified timestamp.
descriptionstring | nullFree-form description.
goal_languagestring | nullLanguage used for goal-evaluation prompts.
summary_languagestring | nullLanguage used to render summaries.
long_pause_threshold_secondsinteger | nullThreshold for long-pause detection.
transcription_hintsstring | nullDomain vocabulary biases.
retention_daysinteger | nullDays before auto-deletion. null disables retention.
quality_baseline_enabledbooleanWhether quality baselining is on.
quality_baseline_pctnumber | nullTarget percentile for the quality baseline.
recordings_countintegerNumber of recordings in this project.
virtual_numbers_countintegerNumber of virtual numbers attached to this project.

Errors

StatusCondition
401Missing or invalid Authorization header.
403API key lacks read permission.
404Project does not exist, or a project-scoped key requested an id other than its own.

Try It

Try It

See also