# List Trusted By entries

URL: /en/docs/api/v1/trusted-by/get
Last Updated: 2026-07-30T21:15:44.971Z

## Description
No description available.

## Available Actions
- Execute GET request
- View request parameters
- View response schema
- Get code examples
- Navigate to related topics
- View step-by-step instructions
- Get best practices

## Content
### GET /api/v1/trusted-by

**List Trusted By entries**

Retrieve the Trusted By entries for the authenticated tenant.

**Authentication:** Bearer token (`Authorization: Bearer <token>`)

**Responses:**

- `200` - List of Trusted By entries for the current tenant
  - `trustedBy` (array of TrustedBy (object))
    - `id` (string): Trusted By ID
    - `title` (string): Optional customer or brand display name
    - `badge` (string (uri)): Public URL for the logo asset
    - `badge_asset_id` (string): Directus file ID for the logo asset
    - `url` (string (uri)): Optional external URL for the logo card
    - `order` (integer): Optional display order. Lower values appear first.
    - `tenant` (string): Tenant ID that owns the entry
    - `user_created` (string): User ID that created the entry
    - `date_created` (string (date-time))
    - `user_updated` (string): User ID that last updated the entry
    - `date_updated` (string (date-time))

  Example (success):
  
  ```json
  {
  "trustedBy": [
    {
      "id": "customer-123",
      "title": "Acme Corp",
      "badge": "https://directus.example.com/assets/customer-badge",
      "badge_asset_id": "customer-badge",
      "url": "https://acme.example.com",
      "order": 10,
      "tenant": "tenant-123",
      "user_created": "user-123",
      "date_created": "2026-05-01T10:05:00.000Z",
      "user_updated": "user-456",
      "date_updated": "2026-06-01T08:30:00.000Z"
    }
  ]
}
  ```
- `401` - Unauthorized
  - `error` (string, required): Machine-readable error code
  - `details` (string): Human-readable error details
- `403` - Forbidden - insufficient permissions for Trusted By access
  - `error` (string, required): Machine-readable error code
  - `details` (string): Human-readable error details
- `404` - Not found - tenant or Trusted By access not found
  - `error` (string, required): Machine-readable error code
  - `details` (string): Human-readable error details
- `500` - Internal server error
  - `error` (string, required): Machine-readable error code
  - `details` (string): Human-readable error details

**Code samples:**

cURL:

```bash
curl -X GET "https://app.orbiqhq.com/api/v1/trusted-by" \
  -H "Authorization: Bearer $ACCESS_TOKEN"
```

JS (fetch):

```javascript
const res = await fetch("https://app.orbiqhq.com/api/v1/trusted-by", {
  headers: { Authorization: `Bearer ${apiKey}` }
});
const { trustedBy } = await res.json();

```

