All URIs are relative to http://localhost
Method | HTTP request | Description ------------- | ------------- | ------------- ListAddressTags | GET /tags | Returns address tags associated with a given label ListConcepts | GET /tags/taxonomies/{taxonomy}/concepts | Returns the supported concepts of a taxonomy ListTaxonomies | GET /tags/taxonomies | Returns the supported taxonomies
AddressTags ListAddressTags(label, page=var.page, pagesize=var.pagesize)
Returns address tags associated with a given label
library(graphsense)
var.label <- 'cimedy' # character | The label of an entity
var.page <- 'page_example' # character | Resumption token for retrieving the next page
var.pagesize <- 10 # integer | Number of items returned in a single page
#Returns address tags associated with a given label
api.instance <- TagsApi$new()
api.instance$apiClient$basePath <- 'http://localhost';
# Configure API key authorization: api_key
api.instance$apiClient$apiKeys['Authorization'] <- 'WRITE_YOUR_API_KEY_HERE';
result <- api.instance$ListAddressTags(var.label, page=var.page, pagesize=var.pagesize)
dput(result)
Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- label | character| The label of an entity | page | character| Resumption token for retrieving the next page | [optional] pagesize | integer| Number of items returned in a single page | [optional]
| Status code | Description | Response headers | |-------------|-------------|------------------| | 200 | OK | - |
array[Concept] ListConcepts(taxonomy)
Returns the supported concepts of a taxonomy
library(graphsense)
var.taxonomy <- 'foo' # character | The taxonomy
#Returns the supported concepts of a taxonomy
api.instance <- TagsApi$new()
api.instance$apiClient$basePath <- 'http://localhost';
# Configure API key authorization: api_key
api.instance$apiClient$apiKeys['Authorization'] <- 'WRITE_YOUR_API_KEY_HERE';
result <- api.instance$ListConcepts(var.taxonomy)
dput(result)
Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- taxonomy | character| The taxonomy |
| Status code | Description | Response headers | |-------------|-------------|------------------| | 200 | OK | - |
array[Taxonomy] ListTaxonomies()
Returns the supported taxonomies
library(graphsense)
#Returns the supported taxonomies
api.instance <- TagsApi$new()
api.instance$apiClient$basePath <- 'http://localhost';
# Configure API key authorization: api_key
api.instance$apiClient$apiKeys['Authorization'] <- 'WRITE_YOUR_API_KEY_HERE';
result <- api.instance$ListTaxonomies()
dput(result)
This endpoint does not need any parameter.
| Status code | Description | Response headers | |-------------|-------------|------------------| | 200 | OK | - |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.