LearnGraph LoginRequest a Demo
HomeAPIBulk DataSayari LibraryChange Log
  • Key Concepts
    • Introduction
    • Endpoint Overview
    • Authentication
    • Requests
    • Pagination
    • Response Status Codes
    • Data Types
    • Rate Limits
  • API Clients
    • Overview
    • Open API
    • Postman
    • Go
    • Python
    • Node
  • API Reference
  • Guides
    • Getting Started
    • Understanding Project Entity
    • Risk Factors
    • Entity Search
    • Advanced Entity Search
    • Resolution
    • Trade Search - Shipments
    • Trade Search - Suppliers & Buyers
    • v0 Migration
  • Implementation Patterns
    • Project Entity Supply Chain
  • Use Cases
    • Entity Screening & Verification
    • Investigations
LogoLogo
LearnGraph LoginRequest a Demo
API ReferenceOntology

GA
GET
/v1/ontology/attributes
GET
/v1/ontology/attributes
1curl -G https://api.sayari.com/v1/ontology/attributes \
2 -H "Authorization: Bearer <token>" \
3 -d id=additional_information
Try it
1{
2 "filters": {
3 "id": [
4 "additional_information"
5 ]
6 },
7 "data": [
8 {
9 "id": "additional_information",
10 "label": "Additional Information",
11 "comment": "This is a generic attribute used to hold miscellaneous information not covered by any other attribute.",
12 "fields": [
13 {
14 "id": "value",
15 "label": "Value",
16 "comment": "The additional information itself",
17 "type": [
18 "null",
19 "string"
20 ]
21 }
22 ]
23 }
24 ],
25 "total_count": 1234
26}
Was this page helpful?
Previous

Get Countries

Next
Built with
Get attributes from ontology data.
Get Attributes

Headers

AuthorizationstringRequired

OAuth authentication of the form <token>.

Query parameters

idlist of enumsOptional
Attribute Id filter.

Response

This endpoint returns an object.
filtersobject
datalist of objects
total_countinteger

Errors