Skip to main content
GET
/
projects
/
{project_id}
/
status
Devices in the project with connectivity and metadata filters (paginated, authorized read).
curl --request GET \
  --url https://api.ilyama.golain.io/core/api/v1/projects/{project_id}/status \
  --header 'Authorization: Bearer <token>' \
  --header 'ORG-ID: <api-key>'
{
  "data": {
    "devices": [
      {}
    ]
  },
  "meta": {
    "current_page": 123,
    "items_per_page": 123,
    "total_items": 123,
    "total_pages": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.ilyama.golain.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

ORG-ID
string
header
required

Path Parameters

project_id
string<uuid>
required

Query Parameters

page
integer
default:1
Required range: x >= 1
limit
integer
default:50
Required range: 1 <= x <= 200
fleet_ids
string

Comma-separated fleet UUIDs; omit for all fleets in the project

device_id
string

Comma-separated device UUIDs (subset to return)

device_ids
string

Same as device_id (either may be used)

tag_ids
string

Comma-separated tag UUIDs; devices must have every listed tag

type
string

Device type enum filter (e.g. mqtt)

name
string

device_name substring match (minimum 3 characters when set)

q
string

Alias for name (substring match, minimum 3 characters)

connected
boolean

When omitted, defaults to true; set false to include disconnected devices

Response

Connected devices page

data
object
required
meta
object
required

Pagination metadata for list endpoints (snake_case keys).

ok
enum<integer>
required
Available options:
1