The Plinct API allows access to the structured data according to the model proposed by Schema.org.
The app is Rest-Full and access is made by https requests vith return in json-ld.
The API can be accessed at https://plinct.com.br/api
Enabled types
To consume data from the api use the url http://plinct.com.br/api/[type]. As an example: https://plinct.com.br/api/organization. Data is limited to 200 items. To see more, use the parameter limit = [n]
Parameters enabled
For general use
Name | Type | Accepted values | Return |
---|---|---|---|
format | string | ItemList | displays data as ItemList (https://schema.org/ItemList). e.g: https://plinct.com.br/api/organization?format=ItemList |
properties | strings separated by commas | [...subclasses] | returns data from the parts that the type has. e.g: https://plinct.com.br/api/organization?format=ItemList&properties=location,image&limit=10 |
orderBy | string | [property name] asc|desc | Ordered by property name |
[propertyname]Like | string | [word searching] | Searched item e.g: https://plinct.com.br/api/person?nameLike=jose |
limit | number | [number] | limit the number of items |
offset | number | [number] | offset of the limit |
where | expression | [sql expression] | sql consult with where |
fields | string separated by commas | [... properties] | selected fields from sql consult |