Banner: Web API: List Professional Associations

Web API: List Professional Associations

Professional associations

The 'List Professional Associations' API enables developers to input a keyword and get a list of matching Professional Associations. The API accepts O*NET, SOC and Industry Codes. If there are no results for the specific code, we will search based on keyword.

About this data

The Professional Associations Finder tool demonstrates how this API can be used. For more information about the data, please visit that tool's help page.

Resource URL

https://api.careeronestop.org/v1/professionalassociation/{userId}/{keyword}/{industry}/{occupation}/{sortColumn}/{sortDirections}/{startRecord}/{limitRecord}

Example Code

using System;

using System.Net.Http;

using System.Net.Http.Headers;

using System.Threading.Tasks;

namespace CareerOneStopAPISample

{

    class Program

    {

        static void Main(string[] args)

        {

            CreateRequest().Wait();

        }

        private static async Task CreateRequest()

        {

   

            var uri = new UriBuilder(Uri.UriSchemeHttps, "api.careeronestop.org")

            {

                Path = "/v1/professionalassociation/{userId}/{keyword}/{industry}/{occupation}/{sortColumn}/{sortDirections}/{startRecord}/{limitRecord}"

            };

           

            using (var http = new HttpClient())

            {

                http.DefaultRequestHeaders.Accept.Clear();

                http.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", "Your API Token");

                http.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));

                var response = await http.GetAsync(uri.Uri).ConfigureAwait(false);

                if (response.IsSuccessStatusCode)

                {

                    var result = await response.Content.ReadAsStringAsync().ConfigureAwait(false);

                }

            }

        }

    }

}
import java.io.IOException;

import java.net.URI;

import java.net.URISyntaxException;

import org.apache.http.HttpEntity;

import org.apache.http.client.methods.CloseableHttpResponse;

import org.apache.http.client.methods.HttpGet;

import org.apache.http.client.utils.URIBuilder;

import org.apache.http.impl.client.CloseableHttpClient;

import org.apache.http.impl.client.HttpClients;

import org.apache.http.util.EntityUtils;

public class CareerOneStopAPISample {

    public static void main(String[] args) throws IOException, URISyntaxException {

    URI uri = new URIBuilder()

        .setScheme("https")

        .setHost("api.careeronestop.org")

        .setPath("/v1/professionalassociation/{userId}/{keyword}/{industry}/{occupation}/{sortColumn}/{sortDirections}/{startRecord}/{limitRecord}")

        .build();

    CloseableHttpResponse response = null;

    HttpGet httpGet = null;

    try {

        CloseableHttpClient httpClient = HttpClients.createDefault();

        httpGet = new HttpGet(uri);

        httpGet.setHeader("Content-Type","application/json");

        httpGet.setHeader("Authorization", "Bearer Your API Token");

        response = httpClient.execute(httpGet);

        HttpEntity entity = response.getEntity();

        System.out.println(EntityUtils.toString(entity));

    } finally {

        if(httpGet != null) httpGet.releaseConnection();

        if(response != null) response.close();

    }

   }

}

Request Parameters

Refer to the following table for a list of the required and optional request parameters. All parameter names and values are case sensitive. Important: You must provide all required parameters. Submitting an empty request does not return all possible results; an empty request returns an error.

Parameter Name Value Required? Description
API Token
String
Yes
This value is the unique API Token provided during the CareerOneStop Web API registration process.
userId
String
Yes
This value is the unique UserID provided during the CareerOneStop Web API registration process.
keyword String
Yes
This value accepts a search term.
industry
String
Yes This is a filter to limit the records based on the selected industry from the initial resultset. The required filter can be obtained from the filterlist values.
occupation
String Yes This is a filter to limit the records based on the selected occupation from the initial resultset. The required filter can be obtained from the filterlist values.
sortColumns
String Yes

This value is for sorting the columns. Valid values are Title,CAREER_CENTER_YN, and default value is 0 for relevance

sortDirection
String Yes Use this parameter to set the ordering of the results. Valid values are ASC, DESC and 0. Default value is 0 for relevance.
startRecord
Integer
Yes This value is to set the starting record. Default value 0 is for the first record.
limitRecord
Integer
Yes This value sets the limit of the maximum number of records to be returned. Default value is 10.

Response Structure

{

  "PAList": [

    {

      "Title": "American College of Nurse-Midwives",

      "CareerCenterYn": "Yes",

      "CareerCenterUrl": "http://www.midwife.org/REDESIGN-MidwifeJobs.com_Start",

      "CertificationYn": "Yes",

      "URL": "http://www.midwife.org/",

      "Occupations": [

        {

          "Name": "Healthcare Practitioners and Technical Workers, All Other",

          "Value": "4294966892"

        }

      ],

      "Industries": [

        {

          "Name": "Ambulatory Health Care Services",

          "Value": "4294967287"

        }

      ]

    },

    {

      "Title": "American Academy of Ambulatory Care Nursing (AAACN)",

      "CareerCenterYn": "Yes",

      "CareerCenterUrl": "https://www.aaacn.org/professional-development/aaacn-career-center",

      "CertificationYn": "Yes",

      "URL": "https://www.aaacn.org/",

      "Occupations": [

        {

          "Name": "Registered Nurses",

          "Value": "4294967147"

        }

      ],

      "Industries": [

        {

          "Name": "Ambulatory Health Care Services",

          "Value": "4294967287"

        }

      ]

    },

    {

      "Title": "American Nephrology Nurses Association (ANNA)",

      "CareerCenterYn": "Yes",

      "CareerCenterUrl": "https://www.annanurse.org/professional-development/jobs",

      "CertificationYn": "Yes",

      "URL": "https://www.annanurse.org/",

      "Occupations": [

        {

          "Name": "Registered Nurses",

          "Value": "4294967147"

        }

      ],

      "Industries": [

        {

          "Name": "Ambulatory Health Care Services",

          "Value": "4294967287"

        }

      ]

    },

    {

      "Title": "American Association of Nurse Practitioners (AANP)",

      "CareerCenterYn": "No",

      "CareerCenterUrl": null,

      "CertificationYn": "Yes",

      "URL": "https://www.aanp.org/index.php",

      "Occupations": [

        {

          "Name": "Nurse Practitioners",

          "Value": "4294967172"

        }

      ],

      "Industries": [

        {

          "Name": "Ambulatory Health Care Services",

          "Value": "4294967287"

        }

      ]

    },

    {

      "Title": "International Nurses Society on Addictions (IntNSA)",

      "CareerCenterYn": "No",

      "CareerCenterUrl": null,

      "CertificationYn": "Yes",

      "URL": "http://www.intnsa.org/",

      "Occupations": [

        {

          "Name": "Registered Nurses",

          "Value": "4294967147"

        }

      ],

      "Industries": [

        {

          "Name": "Hospitals",

          "Value": "4294967144"

        }

      ]

    },

    {

      "Title": "International Society of Nurses in Genetics (ISONG)",

      "CareerCenterYn": "No",

      "CareerCenterUrl": null,

      "CertificationYn": "Yes",

      "URL": "http://www.isong.org/index.php",

      "Occupations": [

        {

          "Name": "Registered Nurses",

          "Value": "4294967147"

        }

      ],

      "Industries": [

        {

          "Name": "Ambulatory Health Care Services",

          "Value": "4294967287"

        }

      ]

    },

    {

      "Title": "American Nurses Association (ANA)",

      "CareerCenterYn": "Yes",

      "CareerCenterUrl": "http://careers.ana.org/",

      "CertificationYn": "No",

      "URL": "http://www.nursingworld.org/",

      "Occupations": [

        {

          "Name": "Registered Nurses",

          "Value": "4294967147"

        }

      ],

      "Industries": [

        {

          "Name": "Ambulatory Health Care Services",

          "Value": "4294967287"

        }

      ]

    },

    {

      "Title": "Association of Rehabilitation Nurses (ARN)",

      "CareerCenterYn": "No",

      "CareerCenterUrl": null,

      "CertificationYn": "Yes",

      "URL": "http://www.rehabnurse.org/",

      "Occupations": [

        {

          "Name": "Registered Nurses",

          "Value": "4294967147"

        }

      ],

      "Industries": [

        {

          "Name": "Ambulatory Health Care Services",

          "Value": "4294967287"

        }

      ]

    },

    {

      "Title": "Developmental Disabilities Nurses Association (DDNA)",

      "CareerCenterYn": "Yes",

      "CareerCenterUrl": "https://ddna.org/communication/employment-opportunities/",

      "CertificationYn": "Yes",

      "URL": "https://ddna.org/",

      "Occupations": [

        {

          "Name": "Registered Nurses",

          "Value": "4294967147"

        }

      ],

      "Industries": [

        {

          "Name": "Ambulatory Health Care Services",

          "Value": "4294967287"

        }

      ]

    },

    {

      "Title": "American Nurses Credentialing Center (ANCC)",

      "CareerCenterYn": "No",

      "CareerCenterUrl": null,

      "CertificationYn": "Yes",

      "URL": "http://www.nursecredentialing.org/",

      "Occupations": [

        {

          "Name": "Registered Nurses",

          "Value": "4294967147"

        }

      ],

      "Industries": [

        {

          "Name": "Ambulatory Health Care Services",

          "Value": "4294967287"

        }

      ]

    }

  ],

  "RecordCount": 161,

  "DidYouMean": "",

  "AutoCorrection": "",

  "OccupationCountList": {

    "UndoList": [],

    "FilterList": [

      {

        "Item": "Registered Nurses (69)",

        "Count": 69,

        "Value": "4294967147"

      },

      {

        "Item": "Medical and Health Services Managers (31)",

        "Count": 31,

        "Value": "4294967136"

      },

      {

        "Item": "Chief Executives (16)",

        "Count": 16,

        "Value": "4294967232"

      },

      {

        "Item": "Health Educators (11)",

        "Count": 11,

        "Value": "4294967169"

      },

      {

        "Item": "Vocational Education Teachers, Postsecondary (6)",

        "Count": 6,

        "Value": "4294967262"

      },

      {

        "Item": "Natural Sciences Managers (5)",

        "Count": 5,

        "Value": "4294967128"

      },

      {

        "Item": "Healthcare Social Workers (4)",

        "Count": 4,

        "Value": "4294967069"

      },

      {

        "Item": "Epidemiologists (2)",

        "Count": 2,

        "Value": "4294966924"

      },

      {

        "Item": "Nurse Practitioners (2)",

        "Count": 2,

        "Value": "4294967172"

      },

      {

        "Item": "Nursing Instructors and Teachers, Postsecondary (2)",

        "Count": 2,

        "Value": "4294967104"

      },

      {

        "Item": "Occupational Therapists (2)",

        "Count": 2,

        "Value": "4294967184"

      },

      {

        "Item": "Personal Care Aides (2)",

        "Count": 2,

        "Value": "4294967117"

      },

      {

        "Item": "Anesthesiologists (1)",

        "Count": 1,

        "Value": "4294967072"

      },

      {

        "Item": "Health Technologists and Technicians, All Other (1)",

        "Count": 1,

        "Value": "4294967062"

      },

      {

        "Item": "Healthcare Practitioners and Technical Workers, All Other (1)",

        "Count": 1,

        "Value": "4294966892"

      },

      {

        "Item": "Home Health Aides (1)",

        "Count": 1,

        "Value": "4294966772"

      },

      {

        "Item": "Licensed Practical and Licensed Vocational Nurses (1)",

        "Count": 1,

        "Value": "4294966874"

      },

      {

        "Item": "Personal Financial Advisors (1)",

        "Count": 1,

        "Value": "4294967175"

      },

      {

        "Item": "Physicians and Surgeons, All Other (1)",

        "Count": 1,

        "Value": "4294967244"

      },

      {

        "Item": "Surgeons (1)",

        "Count": 1,

        "Value": "4294967145"

      },

      {

        "Item": "Veterinary Technologists and Technicians (1)",

        "Count": 1,

        "Value": "4294967174"

      }

    ]

  },

  "IndustryCountList": {

    "UndoList": [],

    "FilterList": [

      {

        "Item": "Ambulatory Health Care Services (73)",

        "Count": 73,

        "Value": "4294967287"

      },

      {

        "Item": "Educational Services (19)",

        "Count": 19,

        "Value": "4294967283"

      },

      {

        "Item": "Religious, Grantmaking, Civic, Professional, and Similar Organizations (15)",

        "Count": 15,

        "Value": "4294967266"

      },

      {

        "Item": "Hospitals (11)",

        "Count": 11,

        "Value": "4294967144"

      },

      {

        "Item": "Professional, Scientific, and Technical Services (10)",

        "Count": 10,

        "Value": "4294967263"

      },

      {

        "Item": "Nursing and Residential Care Facilities (9)",

        "Count": 9,

        "Value": "4294967094"

      },

      {

        "Item": "Social Assistance (6)",

        "Count": 6,

        "Value": "4294967268"

      },

      {

        "Item": "Administrative and Support Services (2)",

        "Count": 2,

        "Value": "4294967281"

      },

      {

        "Item": "Credit Intermediation and Related Activities (2)",

        "Count": 2,

        "Value": "4294967291"

      },

      {

        "Item": "Executive, Legislative, and Other General Government Support (2)",

        "Count": 2,

        "Value": "4294967285"

      },

      {

        "Item": "Health Care and Social Assistance (2)",

        "Count": 2,

        "Value": "4294967243"

      },

      {

        "Item": "Management of Companies and Enterprises (2)",

        "Count": 2,

        "Value": "4294967238"

      },

      {

        "Item": "Publishing Industries (except Internet) (2)",

        "Count": 2,

        "Value": "4294967260"

      },

      {

        "Item": "Insurance Carriers and Related Activities (1)",

        "Count": 1,

        "Value": "4294967219"

      },

      {

        "Item": "Justice, Public Order, and Safety Activities (1)",

        "Count": 1,

        "Value": "4294967274"

      },

      {

        "Item": "Merchant Wholesalers, Durable Goods (1)",

        "Count": 1,

        "Value": "4294967153"

      },

      {

        "Item": "National Security and International Affairs (1)",

        "Count": 1,

        "Value": "4294967156"

      },

      {

        "Item": "Waste Management and Remediation Services (1)",

        "Count": 1,

        "Value": "4294967160"

      }

    ]

  },

  "QueriedOn": {

    "Code": "",

    "Title": "Nurse",

    "Type": "Keyword",

    "IsKeywordSearch": true

  }

}
<ProfessionalAssociations xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/XPAND.CareerOneStop.WebApi.ViewModels">

    <AutoCorrection />

    <DidYouMean />

    <IndustryCountList>

        <FilterList>

            <ItemCount>

                <Count>73</Count>

                <Item>Ambulatory Health Care Services (73)</Item>

                <Value>4294967287</Value>

            </ItemCount>

            <ItemCount>

                <Count>19</Count>

                <Item>Educational Services (19)</Item>

                <Value>4294967283</Value>

            </ItemCount>

            <ItemCount>

                <Count>15</Count>

                <Item>Religious, Grantmaking, Civic, Professional, and Similar Organizations (15)</Item>

                <Value>4294967266</Value>

            </ItemCount>

            <ItemCount>

                <Count>11</Count>

                <Item>Hospitals (11)</Item>

                <Value>4294967144</Value>

            </ItemCount>

            <ItemCount>

                <Count>10</Count>

                <Item>Professional, Scientific, and Technical Services (10)</Item>

                <Value>4294967263</Value>

            </ItemCount>

            <ItemCount>

                <Count>9</Count>

                <Item>Nursing and Residential Care Facilities (9)</Item>

                <Value>4294967094</Value>

            </ItemCount>

            <ItemCount>

                <Count>6</Count>

                <Item>Social Assistance (6)</Item>

                <Value>4294967268</Value>

            </ItemCount>

            <ItemCount>

                <Count>2</Count>

                <Item>Administrative and Support Services (2)</Item>

                <Value>4294967281</Value>

            </ItemCount>

            <ItemCount>

                <Count>2</Count>

                <Item>Credit Intermediation and Related Activities (2)</Item>

                <Value>4294967291</Value>

            </ItemCount>

            <ItemCount>

                <Count>2</Count>

                <Item>Executive, Legislative, and Other General Government Support (2)</Item>

                <Value>4294967285</Value>

            </ItemCount>

            <ItemCount>

                <Count>2</Count>

                <Item>Health Care and Social Assistance (2)</Item>

                <Value>4294967243</Value>

            </ItemCount>

            <ItemCount>

                <Count>2</Count>

                <Item>Management of Companies and Enterprises (2)</Item>

                <Value>4294967238</Value>

            </ItemCount>

            <ItemCount>

                <Count>2</Count>

                <Item>Publishing Industries (except Internet) (2)</Item>

                <Value>4294967260</Value>

            </ItemCount>

            <ItemCount>

                <Count>1</Count>

                <Item>Insurance Carriers and Related Activities (1)</Item>

                <Value>4294967219</Value>

            </ItemCount>

            <ItemCount>

                <Count>1</Count>

                <Item>Justice, Public Order, and Safety Activities (1)</Item>

                <Value>4294967274</Value>

            </ItemCount>

            <ItemCount>

                <Count>1</Count>

                <Item>Merchant Wholesalers, Durable Goods (1)</Item>

                <Value>4294967153</Value>

            </ItemCount>

            <ItemCount>

                <Count>1</Count>

                <Item>National Security and International Affairs (1)</Item>

                <Value>4294967156</Value>

            </ItemCount>

            <ItemCount>

                <Count>1</Count>

                <Item>Waste Management and Remediation Services (1)</Item>

                <Value>4294967160</Value>

            </ItemCount>

        </FilterList>

        <UndoList />

    </IndustryCountList>

    <OccupationCountList>

        <FilterList>

            <ItemCount>

                <Count>69</Count>

                <Item>Registered Nurses (69)</Item>

                <Value>4294967147</Value>

            </ItemCount>

            <ItemCount>

                <Count>31</Count>

                <Item>Medical and Health Services Managers (31)</Item>

                <Value>4294967136</Value>

            </ItemCount>

            <ItemCount>

                <Count>16</Count>

                <Item>Chief Executives (16)</Item>

                <Value>4294967232</Value>

            </ItemCount>

            <ItemCount>

                <Count>11</Count>

                <Item>Health Educators (11)</Item>

                <Value>4294967169</Value>

            </ItemCount>

            <ItemCount>

                <Count>6</Count>

                <Item>Vocational Education Teachers, Postsecondary (6)</Item>

                <Value>4294967262</Value>

            </ItemCount>

            <ItemCount>

                <Count>5</Count>

                <Item>Natural Sciences Managers (5)</Item>

                <Value>4294967128</Value>

            </ItemCount>

            <ItemCount>

                <Count>4</Count>

                <Item>Healthcare Social Workers (4)</Item>

                <Value>4294967069</Value>

            </ItemCount>

            <ItemCount>

                <Count>2</Count>

                <Item>Epidemiologists (2)</Item>

                <Value>4294966924</Value>

            </ItemCount>

            <ItemCount>

                <Count>2</Count>

                <Item>Nurse Practitioners (2)</Item>

                <Value>4294967172</Value>

            </ItemCount>

            <ItemCount>

                <Count>2</Count>

                <Item>Nursing Instructors and Teachers, Postsecondary (2)</Item>

                <Value>4294967104</Value>

            </ItemCount>

            <ItemCount>

                <Count>2</Count>

                <Item>Occupational Therapists (2)</Item>

                <Value>4294967184</Value>

            </ItemCount>

            <ItemCount>

                <Count>2</Count>

                <Item>Personal Care Aides (2)</Item>

                <Value>4294967117</Value>

            </ItemCount>

            <ItemCount>

                <Count>1</Count>

                <Item>Anesthesiologists (1)</Item>

                <Value>4294967072</Value>

            </ItemCount>

            <ItemCount>

                <Count>1</Count>

                <Item>Health Technologists and Technicians, All Other (1)</Item>

                <Value>4294967062</Value>

            </ItemCount>

            <ItemCount>

                <Count>1</Count>

                <Item>Healthcare Practitioners and Technical Workers, All Other (1)</Item>

                <Value>4294966892</Value>

            </ItemCount>

            <ItemCount>

                <Count>1</Count>

                <Item>Home Health Aides (1)</Item>

                <Value>4294966772</Value>

            </ItemCount>

            <ItemCount>

                <Count>1</Count>

                <Item>Licensed Practical and Licensed Vocational Nurses (1)</Item>

                <Value>4294966874</Value>

            </ItemCount>

            <ItemCount>

                <Count>1</Count>

                <Item>Personal Financial Advisors (1)</Item>

                <Value>4294967175</Value>

            </ItemCount>

            <ItemCount>

                <Count>1</Count>

                <Item>Physicians and Surgeons, All Other (1)</Item>

                <Value>4294967244</Value>

            </ItemCount>

            <ItemCount>

                <Count>1</Count>

                <Item>Surgeons (1)</Item>

                <Value>4294967145</Value>

            </ItemCount>

            <ItemCount>

                <Count>1</Count>

                <Item>Veterinary Technologists and Technicians (1)</Item>

                <Value>4294967174</Value>

            </ItemCount>

        </FilterList>

        <UndoList />

    </OccupationCountList>

    <PAList>

        <ProfessionalAssociation>

            <CareerCenterUrl>http://www.midwife.org/REDESIGN-MidwifeJobs.com_Start</CareerCenterUrl>

            <CareerCenterYn>Yes</CareerCenterYn>

            <CertificationYn>Yes</CertificationYn>

            <Industries>

                <Dimension>

                    <Name>Ambulatory Health Care Services</Name>

                    <Value>4294967287</Value>

                </Dimension>

            </Industries>

            <Occupations>

                <Dimension>

                    <Name>Healthcare Practitioners and Technical Workers, All Other</Name>

                    <Value>4294966892</Value>

                </Dimension>

            </Occupations>

            <Title>American College of Nurse-Midwives</Title>

            <URL>http://www.midwife.org/</URL>

        </ProfessionalAssociation>

        <ProfessionalAssociation>

            <CareerCenterUrl>https://www.aaacn.org/professional-development/aaacn-career-center</CareerCenterUrl>

            <CareerCenterYn>Yes</CareerCenterYn>

            <CertificationYn>Yes</CertificationYn>

            <Industries>

                <Dimension>

                    <Name>Ambulatory Health Care Services</Name>

                    <Value>4294967287</Value>

                </Dimension>

            </Industries>

            <Occupations>

                <Dimension>

                    <Name>Registered Nurses</Name>

                    <Value>4294967147</Value>

                </Dimension>

            </Occupations>

            <Title>American Academy of Ambulatory Care Nursing (AAACN)</Title>

            <URL>https://www.aaacn.org/</URL>

        </ProfessionalAssociation>

        <ProfessionalAssociation>

            <CareerCenterUrl>https://www.annanurse.org/professional-development/jobs</CareerCenterUrl>

            <CareerCenterYn>Yes</CareerCenterYn>

            <CertificationYn>Yes</CertificationYn>

            <Industries>

                <Dimension>

                    <Name>Ambulatory Health Care Services</Name>

                    <Value>4294967287</Value>

                </Dimension>

            </Industries>

            <Occupations>

                <Dimension>

                    <Name>Registered Nurses</Name>

                    <Value>4294967147</Value>

                </Dimension>

            </Occupations>

            <Title>American Nephrology Nurses Association (ANNA)</Title>

            <URL>https://www.annanurse.org/</URL>

        </ProfessionalAssociation>

        <ProfessionalAssociation>

            <CareerCenterUrl i:nil="true" />

            <CareerCenterYn>No</CareerCenterYn>

            <CertificationYn>Yes</CertificationYn>

            <Industries>

                <Dimension>

                    <Name>Ambulatory Health Care Services</Name>

                    <Value>4294967287</Value>

                </Dimension>

            </Industries>

            <Occupations>

                <Dimension>

                    <Name>Nurse Practitioners</Name>

                    <Value>4294967172</Value>

                </Dimension>

            </Occupations>

            <Title>American Association of Nurse Practitioners (AANP)</Title>

            <URL>https://www.aanp.org/index.php</URL>

        </ProfessionalAssociation>

        <ProfessionalAssociation>

            <CareerCenterUrl i:nil="true" />

            <CareerCenterYn>No</CareerCenterYn>

            <CertificationYn>Yes</CertificationYn>

            <Industries>

                <Dimension>

                    <Name>Hospitals</Name>

                    <Value>4294967144</Value>

                </Dimension>

            </Industries>

            <Occupations>

                <Dimension>

                    <Name>Registered Nurses</Name>

                    <Value>4294967147</Value>

                </Dimension>

            </Occupations>

            <Title>International Nurses Society on Addictions (IntNSA)</Title>

            <URL>http://www.intnsa.org/</URL>

        </ProfessionalAssociation>

        <ProfessionalAssociation>

            <CareerCenterUrl i:nil="true" />

            <CareerCenterYn>No</CareerCenterYn>

            <CertificationYn>Yes</CertificationYn>

            <Industries>

                <Dimension>

                    <Name>Ambulatory Health Care Services</Name>

                    <Value>4294967287</Value>

                </Dimension>

            </Industries>

            <Occupations>

                <Dimension>

                    <Name>Registered Nurses</Name>

                    <Value>4294967147</Value>

                </Dimension>

            </Occupations>

            <Title>International Society of Nurses in Genetics (ISONG)</Title>

            <URL>http://www.isong.org/index.php</URL>

        </ProfessionalAssociation>

        <ProfessionalAssociation>

            <CareerCenterUrl>http://careers.ana.org/</CareerCenterUrl>

            <CareerCenterYn>Yes</CareerCenterYn>

            <CertificationYn>No</CertificationYn>

            <Industries>

                <Dimension>

                    <Name>Ambulatory Health Care Services</Name>

                    <Value>4294967287</Value>

                </Dimension>

            </Industries>

            <Occupations>

                <Dimension>

                    <Name>Registered Nurses</Name>

                    <Value>4294967147</Value>

                </Dimension>

            </Occupations>

            <Title>American Nurses Association (ANA)</Title>

            <URL>http://www.nursingworld.org/</URL>

        </ProfessionalAssociation>

        <ProfessionalAssociation>

            <CareerCenterUrl i:nil="true" />

            <CareerCenterYn>No</CareerCenterYn>

            <CertificationYn>Yes</CertificationYn>

            <Industries>

                <Dimension>

                    <Name>Ambulatory Health Care Services</Name>

                    <Value>4294967287</Value>

                </Dimension>

            </Industries>

            <Occupations>

                <Dimension>

                    <Name>Registered Nurses</Name>

                    <Value>4294967147</Value>

                </Dimension>

            </Occupations>

            <Title>Association of Rehabilitation Nurses (ARN)</Title>

            <URL>http://www.rehabnurse.org/</URL>

        </ProfessionalAssociation>

        <ProfessionalAssociation>

            <CareerCenterUrl>https://ddna.org/communication/employment-opportunities/</CareerCenterUrl>

            <CareerCenterYn>Yes</CareerCenterYn>

            <CertificationYn>Yes</CertificationYn>

            <Industries>

                <Dimension>

                    <Name>Ambulatory Health Care Services</Name>

                    <Value>4294967287</Value>

                </Dimension>

            </Industries>

            <Occupations>

                <Dimension>

                    <Name>Registered Nurses</Name>

                    <Value>4294967147</Value>

                </Dimension>

            </Occupations>

            <Title>Developmental Disabilities Nurses Association (DDNA)</Title>

            <URL>https://ddna.org/</URL>

        </ProfessionalAssociation>

        <ProfessionalAssociation>

            <CareerCenterUrl i:nil="true" />

            <CareerCenterYn>No</CareerCenterYn>

            <CertificationYn>Yes</CertificationYn>

            <Industries>

                <Dimension>

                    <Name>Ambulatory Health Care Services</Name>

                    <Value>4294967287</Value>

                </Dimension>

            </Industries>

            <Occupations>

                <Dimension>

                    <Name>Registered Nurses</Name>

                    <Value>4294967147</Value>

                </Dimension>

            </Occupations>

            <Title>American Nurses Credentialing Center (ANCC)</Title>

            <URL>http://www.nursecredentialing.org/</URL>

        </ProfessionalAssociation>

    </PAList>

    <QueriedOn>

        <Code />

        <IsKeywordSearch>true</IsKeywordSearch>

        <Title>Nurse</Title>

        <Type>Keyword</Type>

    </QueriedOn>

    <RecordCount>161</RecordCount>

</ProfessionalAssociations>

Response Parameters

Name Description Type
PAList
 Professional Associations List
Object
    Title
 Title
String
    CareerCenterYn
 Does this professional association offer a career center? String
    CareerCenterUrl
 Career Center URL
String
    CertificationYn
Does this professional association offer any certifications? String
    Url
URL of this Professional Association String
    Occupations
Occupations associated with this PA, using O*NET taxonomy. Current implementation has one associated occupation per PA. Object
        Name
Name
String
        Value
Value
String
    Industries
Industries associated with this PA, at 3-digit level of NAICS taxonomy. Current implementation has one associated industry per PA.  Object
        Name
Name
String
        Value
Value
String
RecordCount
Number of search results Number
DidYouMean
Did You Mean
String
AutoCorrection
Auto Correction
String
OccupationCountList
This object can be used to filter subsequent calls to this Web API by only one occupation Object
    UndoList
Undo List
Object
        Item
Item
String
        Count
Count
Number
        Value
Value
String
    FilterList
Filter List
Object
        Item
Item
String
        Count
Count
Number
        Value
Value
String
IndustryCountList
This object can be used to filter subsequent calls to this Web API by only one industry Object
    UndoList
Undo List
Object
        Item
Item
String
        Count
Count
Number
        Value
List
String
    FilterList
Filter List
Object
        Item
Item
String
        Count
Count
Number
        Value
Value
String
QueriedOn Current Query Information, lets users know on which search criteria the results are returned Object
    Code
Current Search Code if exists
String
    IsKeywordSearch
Shows if current query is doing search based on keyword itself, vs on code. (True/False)
String
    Title
Current Search Title
String
    Type
Current Query Search Type. Valid values include: 
Keyword
ONETDataLevel
ONETNonDataLevel
ONETNonDataLevelWithUmbrellas
SOCDataLevel
SOCNonDataLevel
SOCNonDataLevelWithUmbrellas
Industry
String

Errors

Error/Status Code Description
 200
OK / Success. The request went through successfully and there is a response body.
 400
Bad Request (Request was invalid or missing parameters)
 401    
Unauthorized. This error occurs specifically when authentication is required and has failed or has not yet been provided correctly. (ex: Invalid API Token)
 404
This error will be shown in two scenarios 1) Not found - (An error occurred) and 2) Not found - (No data available)
 500
Internal Server Error. This error will occur when there is something critically wrong in the API call.