- The name of your application or API (Travel0-native)
- Application or user metadata (permissions)
- Application type (SPA)
How it works
The search bar on the Applications and API sections of Auth0 Dashboard uses a guided filter interface and Boolean search. The search bar functions as a dropdown menu that lists the filterable fields. When you select a field and enter a value, the filter applies the value as a removable tag above the results. You can combine up to five filters at a time. Each filter you add narrows results further. To specify results, apply AND/OR logic between different fields. Filters reflect in the URL as query parameters. Copy the URL at any point to share with a teammate or bookmark it to return to the same filtered view later. Boolean example If you filter by Application typeNative OR SPA, and First-party client true, the results show only first-party applications that are either Native or SPA. Applications that are Regular Web Apps or third-party apps are excluded.
Search behavior by field type
Dashboard search matches results based on the field type.-
String fields (name, identifier): Partial match is supported. Entering
paymentsfinds “Payments API”, “Corp Payments Service”, and similar — word order does not matter. To exclude results that match a term, prefix it withNOT,-, orNo— for example, enteringNOT testin the name field returns all resources whose name does not contain “test”. Wildcard searches require at least three characters; entering fewer shows a “Minimum 3 characters” message and does not submit the query. - Exact match fields (Application ID, API ID)
client_id or resource server ID from a log or support ticket.
- Metadata fields (App metadata, Org metadata)
- Key and value: Enter a key and a value to find resources where that exact key matches that value. For example, key
environmentand valueproductionreturns only resources whereapp_metadata.environmentequalsproduction. Prefix matching is supported for values — enteringprodmatchesproduction,prod-eu, andprod-us. - Key only: Enter a key and press Enter without a value. This returns all resources that have that metadata key set, regardless of its value. Useful for finding resources that use a specific key at all.
tier.bronze and value true matches resources where app_metadata.tier.bronze equals true.
To exclude results that match a specific key-value pair, prefix the value with NOT — for example, key color and value NOT orange returns all resources where color is set to anything other than orange. Keys must be an exact match. Contains and ends-with matching are not supported for metadata. Values are indexed up to 64 characters; values longer than that are not searchable.
- Enum fields (Application type)
Native and SPA returns all Native and SPA applications.
- Boolean fields (First-party)
true or false. Use this to distinguish first-party applications (those authorized to skip the consent screen) from third-party ones.
Searchable fields
Applications
| Field | Description | Match type |
|---|---|---|
| Name | The name of the application | Partial match |
Client ID (client_id) | The unique client ID | Exact match |
External client ID (external_client_id) | An external identifier for the application | Exact match |
| Metadata | Custom key-value metadata stored on the application | Exact or prefix match |
| Application type | Native, SPA, Regular Web App, or Machine to Machine | Enum selection |
| First-party client | Whether the application is first-party or third-party | Boolean |
APIs
| Field | Description | Match type |
|---|---|---|
| Name | The name of the API | Partial match |
| Identifier | The unique audience identifier (for example, https://api.example.com) | Partial match |
| ID | The internal system ID | Exact match |
Limitations
- You can apply a maximum of five filters per search. The search bar prevents adding a sixth filter.
- Search results may not reflect changes made in the last few seconds, as the index is eventually consistent.
- Results return within two seconds under normal conditions. If a query times out, reduce the number of filters or use a more specific search term.
Example queries
Find an application by client ID
Use this when you have aclient_id from an error log or support ticket and need to locate the application quickly.
- Navigate to Auth0 Dashboard > Applications > Applications.
- Select the search bar and choose Application ID.
- Paste the full
client_idvalue. The matching application appears immediately.
Find APIs by identifier
Use this to locate an API when you know part of the audience URL.- Navigate to Auth0 Dashboard > Applications > APIs.
- Select the search bar and choose API identifier.
- Type part of the identifier, for example
payments. All APIs whose identifier contains “payments” appear in the results.
Find applications using metadata
If your applications store custom metadata — such as environment labels, plan tiers, or external IDs — you can search by those values.- Navigate to Auth0 Dashboard > Applications > Applications.
- Select the search bar and choose App metadata.
- Enter the metadata key, for example
environment. - Enter the value, for example
production. Applications wheremetadata.environmentequalsproductionappear in the results. To match by prefix, enter a partial value such asprod.