Skip to main content

Get Company Information API

The Get Company Information API retrieves comprehensive details about a GNet Connect member company, including their fleet, services, locations, and operational information.

Endpoint

GET https://core.grdd.net/api/content/{griddid} Replace {griddid} with the specific company identifier (e.g., “latest” for the latest/demo company).

Authentication

This endpoint requires authentication using a Bearer token. To obtain an access token, see the Get Token API documentation. Headers:

Request Example


Response

The API returns a comprehensive JSON object containing all company information.

Response Structure


Response Fields

Company Information

  • conextid: Context identifier for the company
  • name: Full company name
  • address: Complete business address
  • city: City name
  • state: State or province
  • zipCode: Postal/ZIP code
  • country: Country name
  • airports: Array of airport codes served
  • logo_url: URL to company logo image
  • coType: Company type (e.g., “CO”)
  • mainContact: Primary contact person name
  • mainPhone: Main business phone number
  • webURL: Company website URL
  • searchKeywords: Keywords for search optimization
  • dispatchPhone: Dispatch phone number
  • activeFlg: Active status flag (“Y” or “N”)
  • lat: Latitude coordinate
  • lon: Longitude coordinate
  • mainEmail: Primary contact email
  • associations: Industry associations
  • nlaNumber: NLA registration number
  • griddid: Unique GRiDD identifier
  • vehicleTypeServiced: Array of vehicle types offered
  • visibility: Public visibility setting

Services Array

Each service object contains:
  • id: Unique service identifier
  • title: Service name
  • description: Detailed service description
  • image_url: Service image URL
  • extra_photos: Additional service photos
  • display_order: Display ordering
  • tags: Service categorization tags
  • status: Service status (“active” or “inactive”)
  • documents: Associated documents
  • slug: URL-friendly identifier
  • updatedAt / createdAt: Timestamps

Fleet Array

Each fleet object contains:
  • id: Unique fleet identifier
  • name: Fleet name
  • type: Vehicle type (e.g., “SUV”, “SEDAN”)
  • model: Vehicle model
  • description: Fleet description
  • max_passengers: Maximum passenger capacity
  • max_luggage: Maximum luggage capacity
  • max_carry_on: Maximum carry-on capacity
  • image_url: Fleet image URL
  • colors: Available vehicle colors
  • attributes: Additional fleet attributes
  • status: Fleet status
  • minimum_rate: Minimum service rate
  • hourly_rate: Hourly service rate
  • slug: URL-friendly identifier
  • updatedAt / createdAt: Timestamps

Locations Array

Each location object contains:
  • id: Unique location identifier
  • name: Location name
  • address: Full location address
  • location: GPS coordinates (longitude,latitude)
  • image_url: Location image URL
  • airport_codes: Associated airport codes
  • tags: Location tags
  • status: Location status
  • cities: Associated cities
  • description: Location description
  • slug: URL-friendly identifier
  • updatedAt / createdAt: Timestamps

Error Responses

401 Unauthorized

404 Not Found

500 Internal Server Error


Usage Examples

JavaScript/Node.js

Python