Interzoid State Data Standardization API
This API provides the two-letter state abbreviation (or the province abbreviation for Canada) for the purposes of standardizing state name data, improving query results, analytics, and data merging
COMMUNITYNO AUTH0 INSTALLS
OpenAPI Specificationv3.0
{
"openapi": "3.0.0",
"servers": [
{
"url": "https://api.interzoid.com"
}
],
"info": {
"contact": {
"email": "support@interzoid.com",
"name": "API Support",
"url": "https://www.interzoid.com",
"x-twitter": "interzoid"
},
"description": "This API provides the two-letter state abbreviation (or the province abbreviation for Canada) for the purposes of standardizing state name data, improving query results, analytics, and data merging.",
"license": {
"name": "Interzoid license",
"url": "https://www.interzoid.com/license"
},
"termsOfService": "https://www.interzoid.com/terms",
"title": "Interzoid State Data Standardization 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/getstateabbreviation.json",
"version": "3.0"
}
],
"x-providerName": "interzoid.com",
"x-serviceName": "getstateabbreviation"
},
"externalDocs": {
"description": "API home page and documentation",
"url": "https://www.interzoid.com/services/getstateabbreviation"
},
"paths": {
"/getstateabbreviation": {
"get": {
"description": "Gets a two-letter abbreviation for a state or province given a permutation of state or province data.",
"operationId": "getstateabbreviation",
"parameters": [
{
"description": "Your Interzoid license API key. Register at www.interzoid.com/register",
"in": "query",
"name": "license",
"required": true,
"schema": {
"type": "string"
}
},
{
"description": "State (or province) name from which to retrieve the two letter abbreviation.",
"in": "query",
"name": "state",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"properties": {
"Abbreviation": {
"type": "string"
},
"Code": {
"type": "string"
},
"Credits": {
"type": "string"
},
"State": {
"type": "string"
}
},
"type": "object"
}
}
},
"description": "State (or province) standardized two-letter abbreviation"
},
"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"
}
},
"summary": "Gets a two-letter abbreviation for a state or province name data",
"tags": [
"State Data Standardization"
]
}
}
}
}