v2.0
OAS 3.1.0

Golden API v2

Server: https://golden.com

Golden Public API V2

No authentication selected
Client Libraries

Entity API

Get entities

Query Parameters
  • cursor
    Type:string

    The pagination cursor value.

  • entityTypeIds
    Type:string

    Comma separated Entity type ID(s) to restrict to (use schema API above to retrieve all available entity types).

  • filterPredicateId
    Type:string

    Set a predicate filter by using filterPredicateId and filterValue query params. filterPredicateId is the ID of the predicate to be used. See predicate schema isFilterable field for supported predicate IDs.

  • filterValue
    Type:string

    Set a predicate filter by using filterPredicateId and filterValue query params. filterValue is the value to be used for the filter.

  • ids
    Type:string

    Comma separated entity IDs to restrict returned entities.

  • pageSize
    Type:integer

    Number of results to return per page. The default value is 2 for Free Plan and 10 for Any Paid Plan. The maximum value is 100.

  • predicateIds
    Type:string

    Comma separated Predicate ID(s) to restrict returned properties. Returns just the name property if not set.

  • Responses
    • application/json
    • application/json
    • application/json
    • application/json
    • application/json
    • application/json
    Request Example forGET/api/v2/public/entities/
    curl https://golden.com/api/v2/public/entities/
    
    {
      "next": "https://example.com",
      "previous": "https://example.com",
      "results": [
        {
          "id": 1,
          "latestVersionId": 1,
          "properties": [
            {
              "predicateId": "…",
              "instances": [
                {
                  "value": 1,
                  "citations": [
                    {
                      "title": "…",
                      "url": "…"
                    }
                  ]
                }
              ]
            }
          ]
        }
      ]
    }

    Query API (Collapsed)

    Schema API (Collapsed)

    Models