Collections > Get a collection
Retrieve information about a specific collection in Tallyfy Answers using its unique name. The…
This endpoint lets you fetch a specific object from a collection using its unique identifier. You’ll get the complete data for an individual record.
GET /v1/collections/{collection_name}/objects/{object_id}| Parameter | Type | Required | Description |
|---|---|---|---|
collection_name | path | Yes | Name of the collection containing the object |
object_id | path | Yes | Unique identifier of the object to retrieve |
A successful request returns a 200 OK status code and a JSON object with all the properties of the requested object:
{ "id": "product-123", "name": "Wireless Headphones", "description": "Premium noise-canceling headphones with 20-hour battery life", "price": 79.99, "categories": ["electronics", "audio", "wireless"], "created_at": "2023-08-15T14:32:21Z", "updated_at": "2023-08-15T14:32:21Z"}| Status | Description |
|---|---|
| 404 | Object or collection not found |
| 400 | Invalid object ID format |
curl -X GET https://go.tallyfy.com/api/collections/products/objects/product-123 \ -H "X-Answers-API-Key: your_api_key"created_at and updated_at are always included1Collections > Get a collection
Objects > Index a single object
ISO 8601 format timestamps (YYYY-MM-DDTHH:mm:ssZ) tracked at microsecond precision in PostgreSQL ↩