List Schemas
List all available schemas, optionally filtered by document_type, schema_name, or client_id. Query Parameters: - document_type: Filter schemas by document type - schema_name: Filter schemas by schema name (may not be unique) - client_id: Filter schemas by client ID Note: schema_name is optional and may not be unique.
Endpoint URL
https://api.neudociq.com/api/v1/schemasOverview
List all available schemas, optionally filtered by document_type, schema_name, or client_id. Query Parameters: - document_type: Filter schemas by document type - schema_name: Filter schemas by schema name (may not be unique) - client_id: Filter schemas by client ID Note: schema_name is optional and may not be unique.
Purpose
List Schemas
Use Case
This endpoint is read-only and should be safe to call repeatedly for the same resource identifier.
Authentication
- APIKeyHeader: API key in header (X-API-Key).
Header Example
X-API-Key: ndq_test_api_keyHeaders
No parameters.
Query Parameters
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
| document_type | unknown | Optional | - | - |
| schema_name | unknown | Optional | - | - |
| client_id | unknown | Optional | - | - |
Path Parameters
No parameters.
Request Fields
No request body fields are defined for this endpoint.
Request Default
Copy-ready examples with real endpoint paths and authentication placeholders.
const url = "https://api.neudociq.com/api/v1/schemas";
const response = await fetch(url, {
method: 'GET',
headers: {
'X-API-Key': 'ndq_test_api_key',
},
});
const data = await response.json();
console.log(data);Best Practices
- Validate required fields client-side before sending requests.
- Log request identifiers and HTTP status codes for supportability.
- Retry only when the operation is safe or your workflow is idempotent.