Skip to main content
GET
/
api
/
signals
/
search
/
{id}
Get a signal search and its results
curl --request GET \
  --url https://app.puffle.ai/api/signals/search/{id} \
  --header 'Authorization: Bearer <token>'
{ "search": { "id": "aa111111-1111-1111-1111-111111111111", "query": "series B fintech hiring", "status": "completed", "sources_total": 9, "sources_completed": 9, "filter_prompt": null, "created_at": "2026-04-22T09:00:00Z", "completed_at": "2026-04-22T09:03:10Z" }, "results": [ { "id": "bb111111-1111-1111-1111-111111111111", "source_id": "linkedin_posts", "title": "Announcing our Series B", "content": "We just closed our Series B...", "url": "https://linkedin.com/posts/acme", "date": "2026-04-22T08:00:00Z", "author_name": "Acme Corp", "author_url": "https://linkedin.com/company/acme", "author_avatar": null, "metadata": {}, "relevant": true, "created_at": "2026-04-22T09:01:00Z" } ] }

Overview

Return the search metadata plus all results inserted so far. Safe to poll during a running search — new rows appear incrementally as the orchestrator completes per-source scans. No side effects.
This operation shares the URL path /api/signals/search/{id} with other verbs. See the sibling page for related operations on the same resource.

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string<uuid>
required

Signal search UUID.

Pattern: ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$

Response

Search metadata + current results.

A saved freeform signal search.

results
object[]
required