Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.neuro-tech.io/llms.txt

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

Pattern matching

Many Neuron API endpoints support pattern matching to help you filter and query data efficiently without fetching everything.

Query parameters

Use the filter query parameter with a pattern expression:
GET /v1/resources?filter=name:starts_with:acme

Supported operators

OperatorDescriptionExample
eqExact matchstatus:eq:active
neqNot equalstatus:neq:archived
starts_withPrefix matchname:starts_with:acme
containsSubstring matchdescription:contains:payment
gt / ltGreater / less thanamount:gt:100
inMatch any of a listtype:in:invoice,receipt

Combining filters

Chain multiple filters using &:
GET /v1/resources?filter=status:eq:active&filter=type:in:invoice,receipt

Wildcards

Use * as a wildcard in string patterns:
GET /v1/resources?filter=name:contains:acme*corp