-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathopenapi.json
113 lines (113 loc) · 3.31 KB
/
openapi.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"swagger": "2.0",
"info": {
"contact": {
"email": "[email protected]",
"name": "API Support",
"url": "https://www.interzoid.com",
"x-twitter": "interzoid"
},
"description": "This API provides a similarity key used to match with other similar street address data, including for purposes of deduplication, fuzzy matching, or merging of datasets. A much higher match rate will be achieved by matching on the algorithmically generated similarity key rather than the data itself.",
"license": {
"name": "Interzoid license",
"url": "https://www.interzoid.com/license"
},
"termsOfService": "https://www.interzoid.com/terms",
"title": "Interzoid Get Address Match Similarity Key API",
"version": "1.0.0",
"x-apisguru-categories": [
"developer_tools"
],
"x-logo": {
"url": "https://api.apis.guru/v2/cache/logo/https_twitter.com_interzoid_profile_image.png"
},
"x-origin": [
{
"format": "openapi",
"url": "https://oas.interzoid.com/api/getaddressmatch.json",
"version": "3.0"
}
],
"x-preferred": true,
"x-providerName": "interzoid.com",
"x-serviceName": "getaddressmatch",
"x-datafire": {
"name": "interzoid_getaddressmatch",
"type": "openapi"
}
},
"host": "api.interzoid.com",
"basePath": "/",
"schemes": [
"https"
],
"paths": {
"/getaddressmatch": {
"get": {
"produces": [
"application/json"
],
"parameters": [
{
"description": "Your Interzoid license API key. Register at www.interzoid.com/register",
"in": "query",
"name": "license",
"required": true,
"type": "string"
},
{
"description": "Address from which to generate similarity key",
"in": "query",
"name": "address",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"description": "Generated similarity key for address data",
"schema": {
"properties": {
"Code": {
"type": "string"
},
"Credits": {
"type": "string"
},
"Simkey": {
"type": "string"
}
},
"type": "object"
}
},
"400": {
"description": "bad request - insufficient parameters"
},
"402": {
"description": "credits exhausted"
},
"403": {
"description": "invalid license API key"
},
"405": {
"description": "method not allowed"
},
"500": {
"description": "internal server error"
}
},
"tags": [
"Street Address Similarity Key"
],
"description": "Gets a similarity key for matching purposes for street address data\n",
"operationId": "getaddressmatch",
"summary": "Gets a similarity key for matching purposes for address data"
}
}
},
"externalDocs": {
"description": "API home page and documentation",
"url": "https://www.interzoid.com/services/getaddressmatch"
}
}